From 3b3140de48a861b83796ce7800bb7440bb72eb13 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 7 Jan 2016 16:45:37 -0800 Subject: [PATCH] exclude console build from all by default --- console/CMakeLists.txt | 4 +++- interface/CMakeLists.txt | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/console/CMakeLists.txt b/console/CMakeLists.txt index be02fe5fcf..e6c83a1a6f 100644 --- a/console/CMakeLists.txt +++ b/console/CMakeLists.txt @@ -29,4 +29,6 @@ install( COMPONENT ${SERVER_COMPONENT} ) -consolidate_installer_components() +if (NOT PR_BUILD AND NOT PRODUCTION_BUILD) + set_target_properties(${PACKAGING_TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL) +endif () diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index 367a32a174..85f502955e 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -62,8 +62,6 @@ set(INTERFACE_SRCS ${INTERFACE_SRCS} "${QT_UI_HEADERS}" "${QT_RESOURCES}") # qt5_create_translation_custom(${QM} ${INTERFACE_SRCS} ${QT_UI_FILES} ${TS}) if (APPLE) - set(MACOSX_BUNDLE_BUNDLE_NAME "High Fidelity") - # configure CMake to use a custom Info.plist set_target_properties(${this_target} PROPERTIES MACOSX_BUNDLE_INFO_PLIST MacOSXBundleInfo.plist.in)