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