2015-01-31 10:38:23 +00:00
|
|
|
set(SRCS AsyncRequests.cpp
|
|
|
|
BoundingBox.cpp
|
2014-09-16 19:18:15 +00:00
|
|
|
BPFunctions.cpp
|
2013-12-07 20:14:29 +00:00
|
|
|
BPMemory.cpp
|
|
|
|
BPStructs.cpp
|
|
|
|
CPMemory.cpp
|
|
|
|
CommandProcessor.cpp
|
|
|
|
Debugger.cpp
|
|
|
|
DriverDetails.cpp
|
|
|
|
Fifo.cpp
|
|
|
|
FPSCounter.cpp
|
|
|
|
FramebufferManagerBase.cpp
|
2014-10-30 14:13:31 +00:00
|
|
|
GeometryShaderGen.cpp
|
2014-12-14 20:23:13 +00:00
|
|
|
GeometryShaderManager.cpp
|
2013-12-07 20:14:29 +00:00
|
|
|
HiresTextures.cpp
|
|
|
|
ImageWrite.cpp
|
|
|
|
IndexGenerator.cpp
|
2016-06-26 11:01:02 +00:00
|
|
|
LightingShaderGen.cpp
|
2013-12-07 20:14:29 +00:00
|
|
|
MainBase.cpp
|
|
|
|
OnScreenDisplay.cpp
|
|
|
|
OpcodeDecoding.cpp
|
|
|
|
PerfQueryBase.cpp
|
|
|
|
PixelEngine.cpp
|
|
|
|
PixelShaderGen.cpp
|
|
|
|
PixelShaderManager.cpp
|
2014-07-29 16:47:56 +00:00
|
|
|
PostProcessing.cpp
|
2013-12-07 20:14:29 +00:00
|
|
|
RenderBase.cpp
|
|
|
|
Statistics.cpp
|
|
|
|
TextureCacheBase.cpp
|
|
|
|
TextureConversionShader.cpp
|
2014-07-12 14:49:24 +00:00
|
|
|
TextureDecoder_Common.cpp
|
2013-12-07 20:14:29 +00:00
|
|
|
VertexLoader.cpp
|
2014-12-13 00:51:14 +00:00
|
|
|
VertexLoaderBase.cpp
|
2013-12-07 20:14:29 +00:00
|
|
|
VertexLoaderManager.cpp
|
|
|
|
VertexLoader_Color.cpp
|
|
|
|
VertexLoader_Normal.cpp
|
|
|
|
VertexLoader_Position.cpp
|
|
|
|
VertexLoader_TextCoord.cpp
|
|
|
|
VertexManagerBase.cpp
|
|
|
|
VertexShaderGen.cpp
|
|
|
|
VertexShaderManager.cpp
|
|
|
|
VideoBackendBase.cpp
|
|
|
|
VideoConfig.cpp
|
|
|
|
VideoState.cpp
|
|
|
|
XFMemory.cpp
|
2014-10-30 14:13:31 +00:00
|
|
|
XFStructs.cpp)
|
2013-11-15 01:09:38 +00:00
|
|
|
set(LIBS core png)
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2014-06-08 01:24:02 +00:00
|
|
|
if(_M_X86)
|
2015-02-13 00:52:07 +00:00
|
|
|
set(SRCS ${SRCS} TextureDecoder_x64.cpp VertexLoaderX64.cpp)
|
|
|
|
elseif(_M_ARM_64)
|
|
|
|
set(SRCS ${SRCS} VertexLoaderARM64.cpp TextureDecoder_Generic.cpp)
|
2013-02-26 19:49:00 +00:00
|
|
|
else()
|
2015-02-13 00:52:07 +00:00
|
|
|
set(SRCS ${SRCS} TextureDecoder_Generic.cpp)
|
2011-12-05 04:26:28 +00:00
|
|
|
endif()
|
|
|
|
|
2010-12-10 02:00:05 +00:00
|
|
|
if(LIBAV_FOUND OR WIN32)
|
2013-12-07 20:14:29 +00:00
|
|
|
set(SRCS ${SRCS} AVIDump.cpp)
|
2010-11-14 21:14:26 +00:00
|
|
|
endif()
|
|
|
|
|
2013-10-17 04:06:34 +00:00
|
|
|
add_dolphin_library(videocommon "${SRCS}" "${LIBS}")
|
2011-03-31 20:41:59 +00:00
|
|
|
|
2016-01-02 18:07:08 +00:00
|
|
|
if(LIBAV_FOUND)
|
|
|
|
target_link_libraries(videocommon ${LIBS} ${LIBAV_LIBRARIES})
|
2010-11-17 01:03:39 +00:00
|
|
|
endif()
|