Skip to content

Commit

Permalink
Fix libretro makefile build
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Oct 5, 2020
1 parent f5d674e commit ed3b99d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions libretro/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ SOURCES_CXX += \
$(COMMONDIR)/GPU/OpenGL/thin3d_gl.cpp \
$(COMMONDIR)/GPU/OpenGL/GLDebugLog.cpp \
$(COMMONDIR)/GPU/OpenGL/GLSLProgram.cpp \
$(COMMONDIR)/GPU/OpenGL/gl3stub.c \
$(COMMONDIR)/GPU/OpenGL/GLFeatures.cpp \
$(COMMONDIR)/GPU/OpenGL/GLRenderManager.cpp \
$(COMMONDIR)/GPU/OpenGL/GLQueueRunner.cpp \
Expand Down Expand Up @@ -223,6 +222,8 @@ SOURCES_CXX += \
$(COMMONDIR)/StringUtils.cpp \
$(COMMONDIR)/TimeUtil.cpp

SOURCES_C +=\
$(COMMONDIR)/GPU/OpenGL/gl3stub.c

SOURCES_CXX += \
$(GPUCOMMONDIR)/VertexDecoderCommon.cpp \
Expand Down Expand Up @@ -345,7 +346,6 @@ SOURCES_CXX += \
$(COREDIR)/Config.cpp \
$(COREDIR)/TextureReplacer.cpp \
$(COREDIR)/Core.cpp \
$(COREDIR)/KeyMap.cpp \
$(COREDIR)/WaveFile.cpp \
$(COREDIR)/KeyMap.cpp \
$(COREDIR)/FileLoaders/HTTPFileLoader.cpp \
Expand Down Expand Up @@ -689,11 +689,13 @@ SOURCES_CXX += \
$(LIBRETRODIR)/LibretroD3D11Context.cpp

SOURCES_CXX += \
$(COMMONDIR)/GPU/D3D9/thin3d_d3d9.cpp \
$(COMMONDIR)/GPU/D3D11/thin3d_d3d11.cpp \
$(COMMONDIR)/GPU/D3D11/D3D11Loader.cpp \
$(COMMONDIR)/GPU/D3D9/D3DCompilerLoader.cpp

$(COMMONDIR)/GPU/D3D9/D3D9ShaderCompiler.cpp \
$(COMMONDIR)/GPU/D3D9/D3D9StateCache.cpp \
$(COMMONDIR)/GPU/D3D9/D3DCompilerLoader.cpp \
$(COMMONDIR)/GPU/D3D9/thin3d_d3d9.cpp \
$(COMMONDIR)/GPU/D3D11/D3D11Loader.cpp \
$(COMMONDIR)/GPU/D3D11/thin3d_d3d11.cpp

INCFLAGS += -I$(CORE_DIR)/dx9sdk/Include -I$(CORE_DIR)/dx9sdk/Include/DX11

endif
Expand Down

0 comments on commit ed3b99d

Please sign in to comment.