Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Stop building GLExtensions.cpp twice(One in GL, one in software). We …
…don't need to build it twice, this'll save a bit of time in the build process.

Also a bit of spacing cleanup.
  • Loading branch information
RyanHoudek committed Jan 19, 2014
1 parent 6ad4c0e commit 683dbc0
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 39 deletions.
30 changes: 15 additions & 15 deletions Source/Core/VideoBackends/OGL/CMakeLists.txt
@@ -1,18 +1,18 @@
set(SRCS GLExtensions/GLExtensions.cpp
FramebufferManager.cpp
GLUtil.cpp
main.cpp
NativeVertexFormat.cpp
PerfQuery.cpp
PostProcessing.cpp
ProgramShaderCache.cpp
RasterFont.cpp
Render.cpp
SamplerCache.cpp
StreamBuffer.cpp
TextureCache.cpp
TextureConverter.cpp
VertexManager.cpp)
set(SRCS GLExtensions/GLExtensions.cpp
FramebufferManager.cpp
GLUtil.cpp
main.cpp
NativeVertexFormat.cpp
PerfQuery.cpp
PostProcessing.cpp
ProgramShaderCache.cpp
RasterFont.cpp
Render.cpp
SamplerCache.cpp
StreamBuffer.cpp
TextureCache.cpp
TextureConverter.cpp
VertexManager.cpp)

set(LIBS videocommon
SOIL
Expand Down
47 changes: 23 additions & 24 deletions Source/Core/VideoBackends/Software/CMakeLists.txt
@@ -1,27 +1,26 @@
set(SRCS ../OGL/GLExtensions/GLExtensions.cpp
BPMemLoader.cpp
Clipper.cpp
SWCommandProcessor.cpp
CPMemLoader.cpp
DebugUtil.cpp
EfbCopy.cpp
EfbInterface.cpp
HwRasterizer.cpp
SWmain.cpp
OpcodeDecoder.cpp
SWPixelEngine.cpp
RasterFont.cpp
Rasterizer.cpp
SWRenderer.cpp
SetupUnit.cpp
SWStatistics.cpp
Tev.cpp
TextureEncoder.cpp
TextureSampler.cpp
TransformUnit.cpp
SWVertexLoader.cpp
SWVideoConfig.cpp
XFMemLoader.cpp)
set(SRCS BPMemLoader.cpp
Clipper.cpp
SWCommandProcessor.cpp
CPMemLoader.cpp
DebugUtil.cpp
EfbCopy.cpp
EfbInterface.cpp
HwRasterizer.cpp
SWmain.cpp
OpcodeDecoder.cpp
SWPixelEngine.cpp
RasterFont.cpp
Rasterizer.cpp
SWRenderer.cpp
SetupUnit.cpp
SWStatistics.cpp
Tev.cpp
TextureEncoder.cpp
TextureSampler.cpp
TransformUnit.cpp
SWVertexLoader.cpp
SWVideoConfig.cpp
XFMemLoader.cpp)

if(wxWidgets_FOUND)
set(SRCS ${SRCS} VideoConfigDialog.cpp)
Expand Down

0 comments on commit 683dbc0

Please sign in to comment.