Skip to content
Snippets Groups Projects
Commit 30e41de3 authored by archshift's avatar archshift
Browse files

Merge pull request #639 from archshift/appbundle

Build app bundles on OS X. Fixes the issue where the menubar would not appear.
parents c7b3331b c036cf60
No related branches found
No related tags found
No related merge requests found
......@@ -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})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment