1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-06 09:07:19 +02:00

cmake: add optional rwtools directory

This commit is contained in:
Anonymous Maarten 2018-07-13 21:33:13 +02:00
parent 99dca06dbc
commit 1bde51a155
3 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,9 @@ if(BUILD_TESTS)
include(CTest)
add_subdirectory(tests)
endif()
if(BUILD_TOOLS)
add_subdirectory(rwtools)
endif()
# Copy the license to the install directory
install(FILES COPYING

View File

@ -1,5 +1,6 @@
option(RW_VERBOSE_DEBUG_MESSAGES "Print verbose debugging messages" ON)
option(BUILD_TOOLS "Build tools")
option(BUILD_TESTS "Build test suite")
option(BUILD_VIEWER "Build GUI data viewer")

0
rwtools/CMakeLists.txt Normal file
View File