mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
2383e2b0f5
Note that most users will want to use the release build to get a -O3 optimized build. This can be enabled by adding "-D CMAKE_BUILD_TYPE=Release". git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6344 8ced0084-cf51-0410-be5f-012b33b47a6e
45 lines
1.0 KiB
CMake
45 lines
1.0 KiB
CMake
set(SRCS Src/BPMemory.cpp
|
|
Src/BPStructs.cpp
|
|
Src/CommandProcessor.cpp
|
|
Src/CPMemory.cpp
|
|
Src/DLCache.cpp
|
|
Src/Fifo.cpp
|
|
Src/HiresTextures.cpp
|
|
Src/ImageWrite.cpp
|
|
Src/IndexGenerator.cpp
|
|
Src/memcpy_amd.cpp
|
|
Src/OnScreenDisplay.cpp
|
|
Src/OpcodeDecoding.cpp
|
|
Src/PixelEngine.cpp
|
|
Src/PixelShaderGen.cpp
|
|
Src/PixelShaderManager.cpp
|
|
Src/Profiler.cpp
|
|
Src/Statistics.cpp
|
|
Src/TextureCacheBase.cpp
|
|
Src/TextureConversionShader.cpp
|
|
Src/TextureDecoder.cpp
|
|
Src/VertexLoader.cpp
|
|
Src/VertexLoaderManager.cpp
|
|
Src/VertexLoader_Color.cpp
|
|
Src/VertexLoader_Normal.cpp
|
|
Src/VertexLoader_Position.cpp
|
|
Src/VertexLoader_TextCoord.cpp
|
|
Src/VertexManagerBase.cpp
|
|
Src/VertexShaderGen.cpp
|
|
Src/VertexShaderManager.cpp
|
|
Src/VideoConfig.cpp
|
|
Src/VideoState.cpp
|
|
Src/XFBConvert.cpp
|
|
Src/XFMemory.cpp
|
|
Src/XFStructs.cpp)
|
|
|
|
# TODO?
|
|
if(OPENCL_FOUND)
|
|
set(SRCS ${SRCS} Src/OpenCL/OCLTextureDecoder.cpp)
|
|
endif(OPENCL_FOUND)
|
|
|
|
add_library(videocommon STATIC ${SRCS})
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|