1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02: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)