diff options
author | archshift <admin@archshift.com> | 2015-03-07 16:07:49 -0800 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-03-07 16:09:00 -0800 |
commit | c036cf604fd23200bc92dc9a16752aa50ed87d16 (patch) | |
tree | 30c58f94b8b032c1702a9eef6e944145ecfc40d2 /src | |
parent | 89495fc888a6bba998311f5fef2d65320b49d4d8 (diff) |
Build app bundles on OS X. Fixes the issue where the menubar would not appear.
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/CMakeLists.txt | 6 |
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}) |