1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-05 00:27:30 +02:00
openrw/rwgame/CMakeLists.txt

31 lines
450 B
CMake
Raw Normal View History

2014-05-26 06:34:49 +02:00
add_executable(rwgame
main.cpp
RWGame.cpp
State.cpp
2014-06-06 13:18:32 +02:00
loadingstate.cpp
2014-05-26 06:34:49 +02:00
ingamestate.cpp
pausestate.cpp
menustate.cpp
debugstate.cpp
DrawUI.cpp
2015-04-19 22:33:33 +02:00
debug/HttpServer.cpp
2014-05-26 06:34:49 +02:00
)
2014-01-26 04:45:55 +01:00
2014-08-15 23:49:58 +02:00
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" ${BULLET_INCLUDE_DIR})
2014-01-26 04:45:55 +01:00
target_link_libraries( rwgame
rwengine
sfml-graphics
sfml-window
2015-04-19 22:33:33 +02:00
sfml-network
sfml-system
${OPENGL_LIBRARIES}
${BULLET_LIBRARIES})
2014-01-26 04:45:55 +01:00
install(TARGETS rwgame RUNTIME DESTINATION bin)