mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
9438a30384
This pulls all the duplicate code from TextureDecoder_Generic / TextureDecoder_x64 out and puts it in a common file. Out custom font used for debugging the texture cache is also pulled out and put in a common "sfont.inc" file. At some point we should also combine this font with the other six binary fonts we ship.
68 lines
1.4 KiB
CMake
68 lines
1.4 KiB
CMake
set(SRCS BPFunctions.cpp
|
|
BPMemory.cpp
|
|
BPStructs.cpp
|
|
CPMemory.cpp
|
|
CommandProcessor.cpp
|
|
Debugger.cpp
|
|
DriverDetails.cpp
|
|
Fifo.cpp
|
|
FPSCounter.cpp
|
|
FramebufferManagerBase.cpp
|
|
HiresTextures.cpp
|
|
ImageWrite.cpp
|
|
IndexGenerator.cpp
|
|
MainBase.cpp
|
|
OnScreenDisplay.cpp
|
|
OpcodeDecoding.cpp
|
|
PerfQueryBase.cpp
|
|
PixelEngine.cpp
|
|
PixelShaderGen.cpp
|
|
PixelShaderManager.cpp
|
|
PostProcessing.cpp
|
|
RenderBase.cpp
|
|
Statistics.cpp
|
|
TextureCacheBase.cpp
|
|
TextureConversionShader.cpp
|
|
TextureDecoder_Common.cpp
|
|
VertexLoader.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)
|
|
|
|
if(_M_X86)
|
|
set(SRCS ${SRCS} TextureDecoder_x64.cpp)
|
|
else()
|
|
set(SRCS ${SRCS} TextureDecoder_Generic.cpp)
|
|
endif()
|
|
if(NOT ${CL} STREQUAL CL-NOTFOUND)
|
|
list(APPEND LIBS ${CL})
|
|
endif()
|
|
|
|
if(wxWidgets_FOUND AND WIN32)
|
|
set(SRCS ${SRCS} EmuWindow.cpp)
|
|
endif()
|
|
|
|
if(LIBAV_FOUND OR WIN32)
|
|
set(SRCS ${SRCS} AVIDump.cpp)
|
|
endif()
|
|
|
|
add_dolphin_library(videocommon "${SRCS}" "${LIBS}")
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
if(LIBAV_FOUND)
|
|
target_link_libraries(videocommon ${LIBS} ${LIBAV_LIBRARIES})
|
|
add_definitions(-D__STDC_CONSTANT_MACROS)
|
|
endif()
|
|
endif()
|