1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 19:32:49 +01:00
openrw/scripttool/CMakeLists.txt

16 lines
312 B
CMake
Raw Normal View History

2014-07-19 09:57:36 +02:00
SET(SCRIPTTOOL scripttool)
add_executable(${SCRIPTTOOL} main.cpp)
include_directories(${CMAKE_SOURCE_DIR}/rwengine/include)
2015-05-03 19:09:25 +02:00
target_link_libraries(${SCRIPTTOOL}
rwengine
sfml-graphics
sfml-window
sfml-system
${OPENGL_LIBRARIES}
GLEW
${BULLET_LIBRARIES})
2014-07-21 01:34:28 +02:00
2014-07-19 09:57:36 +02:00
install(TARGETS ${SCRIPTTOOL} RUNTIME DESTINATION bin)