1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 11:22:45 +01:00
openrw/viewer/CMakeLists.txt
Daniel Evans 6969759c9b Added initial collision model loading
Doesn't support all types of data yet, just spheres and boxes.
2013-07-21 05:12:52 +01:00

8 lines
277 B
CMake

add_executable(viewer main.cpp)
include_directories(../framework2/include /usr/include/bullet)
target_link_libraries( viewer renderware sfml-graphics sfml-window sfml-system GL GLEW BulletDynamics BulletCollision LinearMath )
install(TARGETS viewer RUNTIME DESTINATION bin)