2010-11-18 02:14:12 +00:00
|
|
|
set(SRCS Src/BPMemLoader.cpp
|
|
|
|
Src/Clipper.cpp
|
2011-02-03 19:55:30 +00:00
|
|
|
Src/SWCommandProcessor.cpp
|
2010-11-18 02:14:12 +00:00
|
|
|
Src/CPMemLoader.cpp
|
|
|
|
Src/DebugUtil.cpp
|
|
|
|
Src/EfbCopy.cpp
|
|
|
|
Src/EfbInterface.cpp
|
|
|
|
Src/HwRasterizer.cpp
|
2011-02-03 19:55:30 +00:00
|
|
|
Src/SWmain.cpp
|
2010-11-18 02:14:12 +00:00
|
|
|
Src/OpcodeDecoder.cpp
|
2011-02-03 19:55:30 +00:00
|
|
|
Src/SWPixelEngine.cpp
|
2010-11-18 02:14:12 +00:00
|
|
|
Src/Rasterizer.cpp
|
2011-02-03 19:55:30 +00:00
|
|
|
Src/SWRenderer.cpp
|
2010-11-18 02:14:12 +00:00
|
|
|
Src/SetupUnit.cpp
|
2011-02-03 19:55:30 +00:00
|
|
|
Src/SWStatistics.cpp
|
2010-11-18 02:14:12 +00:00
|
|
|
Src/Tev.cpp
|
|
|
|
Src/TextureEncoder.cpp
|
|
|
|
Src/TextureSampler.cpp
|
|
|
|
Src/TransformUnit.cpp
|
2011-02-03 19:55:30 +00:00
|
|
|
Src/SWVertexLoader.cpp
|
2011-01-29 06:26:03 +00:00
|
|
|
Src/SWVideoConfig.cpp
|
2010-11-18 02:14:12 +00:00
|
|
|
Src/XFMemLoader.cpp)
|
|
|
|
|
2010-12-05 18:10:13 +00:00
|
|
|
if(wxWidgets_FOUND)
|
|
|
|
set(SRCS ${SRCS} Src/VideoConfigDialog.cpp)
|
|
|
|
endif(wxWidgets_FOUND)
|
|
|
|
|
2010-11-18 02:14:12 +00:00
|
|
|
set(LIBS videocommon
|
|
|
|
SOIL
|
2010-11-18 23:27:27 +00:00
|
|
|
common
|
2010-12-06 13:06:54 +00:00
|
|
|
${X11_LIBRARIES}
|
|
|
|
${wxWidgets_LIBRARIES})
|
2012-12-17 20:54:20 +00:00
|
|
|
if(USE_EGL)
|
|
|
|
set(LIBS ${LIBS}
|
|
|
|
EGL)
|
|
|
|
endif()
|
2010-11-18 02:14:12 +00:00
|
|
|
|
2012-12-17 20:54:20 +00:00
|
|
|
if(USE_GLES)
|
|
|
|
set(SRCS ${SRCS}
|
|
|
|
../Plugin_VideoOGL/Src/GLUtil.cpp)
|
|
|
|
set(LIBS ${LIBS}
|
|
|
|
GLESv2)
|
|
|
|
else()
|
|
|
|
set(LIBS ${LIBS}
|
|
|
|
GLEW
|
|
|
|
${OPENGL_LIBRARIES})
|
|
|
|
endif()
|
2011-02-02 21:52:43 +00:00
|
|
|
if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
|
2010-11-18 02:14:12 +00:00
|
|
|
set(LIBS ${LIBS} clrun)
|
|
|
|
endif()
|
|
|
|
|
2011-01-31 02:39:25 +00:00
|
|
|
add_library(videosoftware STATIC ${SRCS})
|
|
|
|
target_link_libraries(videosoftware ${LIBS})
|