2017-03-01 05:43:43 -07:00
|
|
|
set(SRCS
|
|
|
|
AsyncRequests.cpp
|
|
|
|
BoundingBox.cpp
|
|
|
|
BPFunctions.cpp
|
|
|
|
BPMemory.cpp
|
|
|
|
BPStructs.cpp
|
|
|
|
CPMemory.cpp
|
|
|
|
CommandProcessor.cpp
|
|
|
|
Debugger.cpp
|
|
|
|
DriverDetails.cpp
|
|
|
|
Fifo.cpp
|
|
|
|
FPSCounter.cpp
|
|
|
|
FramebufferManagerBase.cpp
|
|
|
|
GeometryShaderGen.cpp
|
|
|
|
GeometryShaderManager.cpp
|
|
|
|
HiresTextures.cpp
|
2017-04-16 03:30:11 -06:00
|
|
|
HiresTextures_DDSLoader.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
ImageWrite.cpp
|
|
|
|
IndexGenerator.cpp
|
|
|
|
LightingShaderGen.cpp
|
|
|
|
MainBase.cpp
|
|
|
|
OnScreenDisplay.cpp
|
|
|
|
OpcodeDecoding.cpp
|
|
|
|
PerfQueryBase.cpp
|
|
|
|
PixelEngine.cpp
|
|
|
|
PixelShaderGen.cpp
|
|
|
|
PixelShaderManager.cpp
|
|
|
|
PostProcessing.cpp
|
|
|
|
RenderBase.cpp
|
|
|
|
RenderState.cpp
|
|
|
|
Statistics.cpp
|
|
|
|
TextureCacheBase.cpp
|
|
|
|
TextureConversionShader.cpp
|
|
|
|
TextureDecoder_Common.cpp
|
|
|
|
VertexLoader.cpp
|
|
|
|
VertexLoaderBase.cpp
|
|
|
|
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
|
|
|
|
XFStructs.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(LIBS
|
|
|
|
core
|
|
|
|
png
|
|
|
|
)
|
2013-02-26 12:49:00 -07:00
|
|
|
|
2014-06-07 19:24:02 -06:00
|
|
|
if(_M_X86)
|
2017-03-01 05:43:43 -07:00
|
|
|
set(SRCS ${SRCS} TextureDecoder_x64.cpp VertexLoaderX64.cpp)
|
2015-02-12 17:52:07 -07:00
|
|
|
elseif(_M_ARM_64)
|
2017-03-01 05:43:43 -07:00
|
|
|
set(SRCS ${SRCS} VertexLoaderARM64.cpp TextureDecoder_Generic.cpp)
|
2013-02-26 12:49:00 -07:00
|
|
|
else()
|
2017-03-01 05:43:43 -07:00
|
|
|
set(SRCS ${SRCS} TextureDecoder_Generic.cpp)
|
2011-12-04 21:26:28 -07:00
|
|
|
endif()
|
|
|
|
|
2013-10-16 22:06:34 -06:00
|
|
|
add_dolphin_library(videocommon "${SRCS}" "${LIBS}")
|
2011-03-31 14:41:59 -06:00
|
|
|
|
2017-05-22 13:13:19 -06:00
|
|
|
if(FFmpeg_FOUND)
|
|
|
|
target_sources(videocommon PRIVATE AVIDump.cpp)
|
|
|
|
target_link_libraries(videocommon PRIVATE
|
|
|
|
FFmpeg::avcodec
|
|
|
|
FFmpeg::avformat
|
|
|
|
FFmpeg::avutil
|
|
|
|
FFmpeg::swscale
|
|
|
|
)
|
2010-11-16 18:03:39 -07:00
|
|
|
endif()
|