From 495c1c38b2b20defd003f1d21b8b2b0147e99c15 Mon Sep 17 00:00:00 2001 From: Vincent Cheng Date: Mon, 13 May 2024 01:36:58 -0700 Subject: [PATCH] Disable Vc_ENABLE_INSTALL by default --- 3rdparty/Vc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/Vc/CMakeLists.txt b/3rdparty/Vc/CMakeLists.txt index 5478d541..cfdf0a50 100644 --- a/3rdparty/Vc/CMakeLists.txt +++ b/3rdparty/Vc/CMakeLists.txt @@ -187,7 +187,7 @@ target_include_directories(Vc $ ) -option(Vc_ENABLE_INSTALL "Whether to install the library." ON) +option(Vc_ENABLE_INSTALL "Whether to install the library." OFF) if (Vc_ENABLE_INSTALL) install(TARGETS Vc EXPORT VcTargets DESTINATION lib${LIB_SUFFIX}) install(DIRECTORY Vc/ DESTINATION include/Vc FILES_MATCHING REGEX "/*.(h|tcc|def)$")