1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-25 20:02:40 +01:00
openrw/rwgame/CMakeLists.txt
2014-06-06 13:12:20 +01:00

15 lines
376 B
CMake

add_executable(rwgame
main.cpp
loadingstate.cpp
ingamestate.cpp
pausestate.cpp
menustate.cpp
debugstate.cpp
)
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" /usr/include/bullet)
target_link_libraries( rwgame rwengine sfml-graphics sfml-window sfml-system GL GLEW BulletDynamics BulletCollision LinearMath )
install(TARGETS rwgame RUNTIME DESTINATION bin)