summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorOatmealDome <julian@oatmealdome.me>2024-07-29 12:17:08 -0400
committerOatmealDome <julian@oatmealdome.me>2024-07-29 12:17:08 -0400
commit4883483d0914a160ea769284ce5a464ec0face5b (patch)
tree487cdcf93b6888a4b5ae5faab442b0af8943589f /Source
parentd4e6bd9d18a57e9b473bbbe966be54c1bcf859f3 (diff)
MacUpdater: Don't set bundle name via a CMake variable
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/MacUpdater/CMakeLists.txt4
-rw-r--r--Source/Core/MacUpdater/Info.plist.in2
2 files changed, 2 insertions, 4 deletions
diff --git a/Source/Core/MacUpdater/CMakeLists.txt b/Source/Core/MacUpdater/CMakeLists.txt
index 9d006a52a5..71c0408317 100644
--- a/Source/Core/MacUpdater/CMakeLists.txt
+++ b/Source/Core/MacUpdater/CMakeLists.txt
@@ -12,14 +12,12 @@ set(SOURCES
add_executable(MacUpdater ${SOURCES})
-set(MacUpdater_NAME "Dolphin Updater")
-
add_dependencies(MacUpdater dolphin_scmrev)
set_target_properties(MacUpdater PROPERTIES
MACOSX_BUNDLE true
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/Info.plist"
- OUTPUT_NAME ${MacUpdater_NAME})
+ OUTPUT_NAME "Dolphin Updater")
target_compile_options(MacUpdater PRIVATE -x objective-c++)
diff --git a/Source/Core/MacUpdater/Info.plist.in b/Source/Core/MacUpdater/Info.plist.in
index f9c9263682..df5967f289 100644
--- a/Source/Core/MacUpdater/Info.plist.in
+++ b/Source/Core/MacUpdater/Info.plist.in
@@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
- <string>${MacUpdater_NAME}</string>
+ <string>Dolphin Updater</string>
<key>CFBundleIconFile</key>
<string>Dolphin.icns</string>
<key>CFBundleIdentifier</key>