From 47245f3b73c3c85de2a73b26f5c935689cd6c5a0 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Mon, 7 Aug 2023 08:52:14 +1000 Subject: [PATCH] Set (most) remaining Info.plist entries (#9) --- src/cli/CMakeLists.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/cli/CMakeLists.txt b/src/cli/CMakeLists.txt index e7f4976f5..549134ac1 100644 --- a/src/cli/CMakeLists.txt +++ b/src/cli/CMakeLists.txt @@ -54,7 +54,13 @@ set_target_properties(cli PROPERTIES OUTPUT_NAME dokit) # Add a custom Info.plist file to the app bundle. if(APPLE) - set(MACOSX_BUNDLE_BLUETOOTH "${PROJECT_NAME} requires Bluetooth access to communicate with Pokit devices.") + set(MACOSX_BUNDLE_BUNDLE_NAME "${PROJECT_NAME} CLI") + set(MACOSX_BUNDLE_GUI_IDENTIFIER "au.id.colby.dokit.cli") + # \todo MACOSX_BUNDLE_ICON_FILE + set(MACOSX_BUNDLE_BUNDLE_VERSION "${PROJECT_VERSION}") + set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${PROJECT_VERSION}") + set(MACOSX_BUNDLE_BLUETOOTH "${PROJECT_NAME} requires Bluetooth access to communicate with Pokit devices.") + set(MACOSX_BUNDLE_COPYRIGHT "Copyright 2022-2023 Paul Colby ") set_target_properties( cli PROPERTIES