summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2015-03-08 03:15:10 +0100
committerarchshift <admin@archshift.com>2015-03-08 03:15:10 +0100
commit30e41de3471814339d6cf0f5cc5b18d2258fa567 (patch)
tree3cb600688d0a6ec3fa2b92ad27f2577dd38d36f1
parentMerge pull request #640 from archshift/ini (diff)
parentBuild app bundles on OS X. Fixes the issue where the menubar would not appear. (diff)
downloadyuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.tar
yuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.tar.gz
yuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.tar.bz2
yuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.tar.lz
yuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.tar.xz
yuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.tar.zst
yuzu-30e41de3471814339d6cf0f5cc5b18d2258fa567.zip
-rw-r--r--src/citra_qt/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt
index a1ad00f57..ff780cad4 100644
--- a/src/citra_qt/CMakeLists.txt
+++ b/src/citra_qt/CMakeLists.txt
@@ -64,7 +64,11 @@ else()
qt4_wrap_ui(UI_HDRS ${UIS})
endif()
-add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
+if (APPLE)
+ add_executable(citra-qt MACOSX_BUNDLE ${SRCS} ${HEADERS} ${UI_HDRS})
+else()
+ add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
+endif()
target_link_libraries(citra-qt core common video_core qhexedit)
target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS})
target_link_libraries(citra-qt ${PLATFORM_LIBRARIES})