diff options
Diffstat (limited to '')
-rw-r--r-- | cmake/scripts/darwin_embedded/PathSetup.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/scripts/darwin_embedded/PathSetup.cmake b/cmake/scripts/darwin_embedded/PathSetup.cmake new file mode 100644 index 0000000..efaca0b --- /dev/null +++ b/cmake/scripts/darwin_embedded/PathSetup.cmake @@ -0,0 +1,7 @@ +set(BUNDLE_IDENTIFIER_DESC "Bundle ID") +if(CORE_PLATFORM_NAME_LC STREQUAL tvos) + string(CONCAT BUNDLE_IDENTIFIER_DESC "${BUNDLE_IDENTIFIER_DESC}" " (app, top shelf, group ID)") +endif() +set(PLATFORM_BUNDLE_IDENTIFIER "${APP_PACKAGE}-${CORE_PLATFORM_NAME_LC}" CACHE STRING "${BUNDLE_IDENTIFIER_DESC}") +list(APPEND final_message "Bundle ID: ${PLATFORM_BUNDLE_IDENTIFIER}") +include(cmake/scripts/osx/PathSetup.cmake) |