commit de4325895bd5b7721e5538ec51fc6c3381bb69c2 parent d698d959981633586499980d18794043709c9b67 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Wed, 23 Feb 2022 23:11:38 +0100 do not pack zips for components that have not been built, fixes #64 Diffstat:
M | CMakeLists.txt | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -80,7 +80,8 @@ endif() # ----------------- CPack -set(CPACK_COMPONENTS_ALL VST2 VST3 AU VST2_Dark VST3_Dark AU_Dark testConsole) +get_cmake_property(CPACK_COMPONENTS_ALL COMPONENTS) +list(REMOVE_ITEM CPACK_COMPONENTS_ALL "Unspecified") set(CPACK_COMPONENTS_GROUPING IGNORE) set(CPACK_ARCHIVE_COMPONENT_INSTALL ON)