From d180e9e1f18963610fdba145281fe0d2b8de5937 Mon Sep 17 00:00:00 2001 From: "A. Maitland Bottoms" Date: Fri, 18 Dec 2020 04:53:21 +0000 Subject: [PATCH] optional-static-apps Gbp-Pq: Name optional-static-apps --- apps/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt index 37fe9aa..de38982 100644 --- a/apps/CMakeLists.txt +++ b/apps/CMakeLists.txt @@ -62,7 +62,7 @@ if(FILESYSTEM_FOUND) target_link_libraries(volk_profile PRIVATE std::filesystem) endif() -if(ENABLE_STATIC_LIBS) +if(ENABLE_STATIC_LIBS AND ENABLE_STATIC_APPS) target_link_libraries(volk_profile PRIVATE volk_static) set_target_properties(volk_profile PROPERTIES LINK_FLAGS "-static") else() @@ -79,7 +79,7 @@ install( add_executable(volk-config-info volk-config-info.cc ${CMAKE_CURRENT_SOURCE_DIR}/volk_option_helpers.cc ) -if(ENABLE_STATIC_LIBS) +if(ENABLE_STATIC_LIBS AND ENABLE_STATIC_APPS) target_link_libraries(volk-config-info volk_static) set_target_properties(volk-config-info PROPERTIES LINK_FLAGS "-static") else() -- 2.30.2