summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorPierre de La Morinerie <kemenaran@gmail.com>2015-09-11 22:06:19 +0200
committerPierre de La Morinerie <kemenaran@gmail.com>2015-10-04 23:11:05 +0200
commit513483f8d59912fc4be6eb8f4765348bbfc17f9f (patch)
tree411c4d215d155091a50e64ae1bc8e4e34e1ae154 /src/citra_qt
parentOS X build uploading: auto-confirm SSH host key (diff)
downloadyuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.tar
yuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.tar.gz
yuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.tar.bz2
yuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.tar.lz
yuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.tar.xz
yuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.tar.zst
yuzu-513483f8d59912fc4be6eb8f4765348bbfc17f9f.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/CMakeLists.txt2
-rw-r--r--src/citra_qt/Info.plist36
2 files changed, 38 insertions, 0 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt
index 51a574629..747ad5519 100644
--- a/src/citra_qt/CMakeLists.txt
+++ b/src/citra_qt/CMakeLists.txt
@@ -24,6 +24,7 @@ set(SRCS
hotkeys.cpp
main.cpp
citra-qt.rc
+ Info.plist
)
set(HEADERS
@@ -72,6 +73,7 @@ endif()
if (APPLE)
add_executable(citra-qt MACOSX_BUNDLE ${SRCS} ${HEADERS} ${UI_HDRS})
+ set_target_properties(citra-qt PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
else()
add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
endif()
diff --git a/src/citra_qt/Info.plist b/src/citra_qt/Info.plist
new file mode 100644
index 000000000..0e5f092e5
--- /dev/null
+++ b/src/citra_qt/Info.plist
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleExecutable</key>
+ <string>$(EXECUTABLE_NAME)</string>
+ <key>CFBundleGetInfoString</key>
+ <string></string>
+ <key>CFBundleIconFile</key>
+ <string>citra.icns</string>
+ <key>CFBundleIdentifier</key>
+ <string>com.citra-emu.citra</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleLongVersionString</key>
+ <string></string>
+ <key>CFBundleName</key>
+ <string>Citra</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string></string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string></string>
+ <key>CSResourcesFileMapped</key>
+ <true/>
+ <key>LSRequiresCarbon</key>
+ <true/>
+ <key>NSHumanReadableCopyright</key>
+ <string></string>
+</dict>
+</plist>