mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
The old Makefiles contain the proper Renderer_init_X.cpp now.
This commit is contained in:
parent
cd76e2a654
commit
75d0226aa5
1
Makefile
1
Makefile
|
@ -1,4 +1,5 @@
|
|||
CPPFLAGS=-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux -I/usr/include/freetype2 -I/usr/include/SDL -D_RPI_
|
||||
LIBS=-L/opt/vc/lib -lbcm_host -lEGL -lGLESv2 -lfreetype -lSDL -lboost_system -lboost_filesystem -lfreeimage -lSDL_mixer
|
||||
ADDITIONAL_SRC_SOURCES=Renderer_init_rpi.cpp
|
||||
|
||||
include Makefile.common
|
||||
|
|
|
@ -3,6 +3,8 @@ CXXFLAGS=-Wall -g -O2
|
|||
LDFLAGS=
|
||||
|
||||
SRC_SOURCES=platform.cpp AudioManager.cpp Window.cpp InputConfig.cpp Log.cpp FolderData.cpp Font.cpp GameData.cpp Gui.cpp InputManager.cpp main.cpp MathExp.cpp Renderer_draw_gl.cpp Renderer_init.cpp Sound.cpp SystemData.cpp XMLReader.cpp components/GuiAnimation.cpp components/GuiBox.cpp components/GuiFastSelect.cpp components/GuiGameList.cpp components/GuiImage.cpp components/GuiMenu.cpp components/GuiTheme.cpp components/GuiInputConfig.cpp components/GuiDetectDevice.cpp pugiXML/pugixml.cpp
|
||||
SRC_SOURCES+=$(ADDITIONAL_SRC_SOURCES)
|
||||
|
||||
SOURCES=$(addprefix src/,$(SRC_SOURCES))
|
||||
OBJECTS=$(SOURCES:.cpp=.o)
|
||||
DEPS=$(SOURCES:.cpp=.d)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
CPPFLAGS=-I/usr/include/freetype2 -I/usr/include/SDL -D_DESKTOP_
|
||||
LIBS=-lGL -lfreetype -lSDL -lboost_system -lboost_filesystem -lfreeimage -lSDL_mixer
|
||||
ADDITIONAL_SRC_SOURCES=Renderer_init_sdlgl.cpp
|
||||
|
||||
include Makefile.common
|
||||
|
|
Loading…
Reference in a new issue