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

15 lines
307 B
CMake

SET(SCRIPTTOOL scripttool)
add_executable(${SCRIPTTOOL} main.cpp)
include_directories(${CMAKE_SOURCE_DIR}/rwengine/include)
target_link_libraries(${SCRIPTTOOL}
rwengine
sfml-graphics
sfml-window
sfml-system
${OPENGL_LIBRARIES}
${BULLET_LIBRARIES})
install(TARGETS ${SCRIPTTOOL} RUNTIME DESTINATION bin)