1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 11:22:45 +01:00
openrw/rwgame/CMakeLists.txt
2016-06-23 22:43:00 +01:00

40 lines
528 B
CMake

add_executable(rwgame
main.cpp
RWGame.cpp
GameConfig.cpp
GameWindow.cpp
State.cpp
loadingstate.cpp
ingamestate.cpp
pausestate.cpp
menustate.cpp
debugstate.cpp
benchmarkstate.cpp
DrawUI.cpp
debug/HttpServer.cpp
debug/TcpSocket.cpp
)
include_directories(SYSTEM
${BULLET_INCLUDE_DIR}
)
include_directories(
"${CMAKE_SOURCE_DIR}/rwengine/include"
)
target_link_libraries(rwgame
rwengine
inih
${OPENGL_LIBRARIES}
${BULLET_LIBRARIES}
${SDL2_LIBRARY}
)
install(TARGETS rwgame RUNTIME DESTINATION bin)