Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2021-04-07 19:15:37 +0300
committerFabian Müller <80399010+fmoc@users.noreply.github.com>2021-04-08 16:37:31 +0300
commit8d6e55cd65dc9fbed99229b6b35474d27abfc2a0 (patch)
treec5cfe8962ab6ae933a9f7384c7c2526adc5134a7 /src/CMakeLists.txt
parent8e157fafafca840cbb4856ac81c740e77567f4f9 (diff)
Exclude 3rd party targets from "all"
Makes "make all" runs faster by excluding third-party targets, e.g., tests or libraries, which no other target in the main project links to, from building by default.
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 1d4a4754e..6d68a2515 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -46,7 +46,7 @@ if (NOT BUILD_LIBRARIES_ONLY)
add_subdirectory(cmd)
if (WITH_CRASHREPORTER)
- add_subdirectory(3rdparty/libcrashreporter-qt)
+ add_subdirectory(3rdparty/libcrashreporter-qt EXCLUDE_FROM_ALL)
add_subdirectory(crashreporter)
endif()
endif(NOT BUILD_LIBRARIES_ONLY)