-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set (most) remaining Info.plist entries (#9)
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>") | ||
set_target_properties( | ||
cli | ||
PROPERTIES | ||
|