From 609447082b82c4c485a7253b7d4dadc440a98789 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Wed, 29 May 2019 23:21:59 +0200 Subject: [PATCH] =?utf8?q?cmake:=20add=20=E2=80=9Ctools=E2=80=9D=20target?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit the same way there is now a BUILD_RADIANT and BUILD_TOOLS build option, allow people to just do: make tools --- tools/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.39.2