From: Thomas Debesse Date: Wed, 29 May 2019 21:21:59 +0000 (+0200) Subject: cmake: add “tools” target X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=commitdiff_plain;h=609447082b82c4c485a7253b7d4dadc440a98789 cmake: add “tools” target the same way there is now a BUILD_RADIANT and BUILD_TOOLS build option, allow people to just do: make tools --- diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 1fcce20f..4c2c5d28 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,3 +1,6 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}") add_subdirectory(quake3) + +add_custom_target(tools) +add_dependencies(tools quake3)