From da5f7912b54d243bc506f3624aef7a49393f118f Mon Sep 17 00:00:00 2001 From: Marko Kudjerski Date: Fri, 19 Aug 2016 16:53:38 -0700 Subject: [PATCH] fixed Info.plist setup for Components.app --- cmake/macros/InstallBesideConsole.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/macros/InstallBesideConsole.cmake b/cmake/macros/InstallBesideConsole.cmake index 449fa7631c..d5777fff12 100644 --- a/cmake/macros/InstallBesideConsole.cmake +++ b/cmake/macros/InstallBesideConsole.cmake @@ -61,10 +61,10 @@ macro(install_beside_console) # configure Info.plist for COMPONENT_APP install(CODE " - set(MACOSX_BUNDLE_EXECUTABLE_NAME 'domain-server') - set(MACOSX_BUNDLE_GUI_IDENTIFIER 'com.highfidelity.server-components') - set(MACOSX_BUNDLE_BUNDLE_NAME 'Sandbox Components') - configure_file('${HF_CMAKE_DIR}/templates/MacOSXBundleSandboxComponentsInfo.plist.in' '${COMPONENTS_BUNDLE_PATH}/Contents/Info.plist') + set(MACOSX_BUNDLE_EXECUTABLE_NAME domain-server) + set(MACOSX_BUNDLE_GUI_IDENTIFIER com.highfidelity.server-components) + set(MACOSX_BUNDLE_BUNDLE_NAME Sandbox\\ Components) + configure_file(${HF_CMAKE_DIR}/templates/MacOSXBundleSandboxComponentsInfo.plist.in ${ESCAPED_BUNDLE_NAME}/Contents/Info.plist) execute_process(COMMAND ${MACDEPLOYQT_COMMAND} ${ESCAPED_BUNDLE_NAME} -verbose=2 -executable=${ESCAPED_EXECUTABLE_NAME})" COMPONENT ${SERVER_COMPONENT} )