mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
9 lines
228 B
CMake
9 lines
228 B
CMake
SET(SCRIPTTOOL scripttool)
|
|
add_executable(${SCRIPTTOOL} main.cpp)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/rwengine/include)
|
|
|
|
target_link_libraries(${SCRIPTTOOL} rwengine)
|
|
|
|
install(TARGETS ${SCRIPTTOOL} RUNTIME DESTINATION bin)
|