2014-08-18 06:35:44 +02:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
2017-06-24 02:39:42 +02:00
|
|
|
set(CMAKE_AUTORCC ON)
|
2014-08-18 06:35:44 +02:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2016-12-11 15:36:34 +01:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
2014-08-18 06:35:44 +02:00
|
|
|
|
2014-04-01 04:26:50 +02:00
|
|
|
set(SRCS
|
2016-12-22 05:49:36 +01:00
|
|
|
configuration/config.cpp
|
|
|
|
configuration/configure_debug.cpp
|
|
|
|
configuration/configure_dialog.cpp
|
|
|
|
configuration/configure_general.cpp
|
|
|
|
configuration/configure_graphics.cpp
|
|
|
|
configuration/configure_input.cpp
|
|
|
|
configuration/configure_system.cpp
|
2015-02-05 17:53:25 +01:00
|
|
|
debugger/profiler.cpp
|
2014-04-23 04:42:29 +02:00
|
|
|
debugger/registers.cpp
|
2016-04-08 18:28:54 +02:00
|
|
|
debugger/wait_tree.cpp
|
2014-11-01 15:36:59 +01:00
|
|
|
util/spinbox.cpp
|
2015-08-19 22:00:56 +02:00
|
|
|
util/util.cpp
|
2014-08-24 03:22:05 +02:00
|
|
|
bootmanager.cpp
|
2016-01-24 18:34:05 +01:00
|
|
|
game_list.cpp
|
2014-04-11 02:50:10 +02:00
|
|
|
hotkeys.cpp
|
|
|
|
main.cpp
|
2016-01-24 18:34:05 +01:00
|
|
|
ui_settings.cpp
|
2014-12-24 06:07:30 +01:00
|
|
|
citra-qt.rc
|
2015-09-11 22:06:19 +02:00
|
|
|
Info.plist
|
2014-08-24 03:22:05 +02:00
|
|
|
)
|
2014-08-18 06:35:44 +02:00
|
|
|
|
2014-08-19 13:34:00 +02:00
|
|
|
set(HEADERS
|
2016-12-22 05:49:36 +01:00
|
|
|
configuration/config.h
|
|
|
|
configuration/configure_debug.h
|
|
|
|
configuration/configure_dialog.h
|
|
|
|
configuration/configure_general.h
|
|
|
|
configuration/configure_graphics.h
|
|
|
|
configuration/configure_input.h
|
|
|
|
configuration/configure_system.h
|
2015-02-05 17:53:25 +01:00
|
|
|
debugger/profiler.h
|
2015-01-04 00:51:14 +01:00
|
|
|
debugger/registers.h
|
2016-04-08 18:28:54 +02:00
|
|
|
debugger/wait_tree.h
|
2015-01-04 00:51:14 +01:00
|
|
|
util/spinbox.h
|
2015-08-19 22:00:56 +02:00
|
|
|
util/util.h
|
2015-01-04 00:51:14 +01:00
|
|
|
bootmanager.h
|
2016-01-24 18:34:05 +01:00
|
|
|
game_list.h
|
2016-04-30 09:33:11 +02:00
|
|
|
game_list_p.h
|
2015-01-04 00:51:14 +01:00
|
|
|
hotkeys.h
|
|
|
|
main.h
|
2016-01-24 18:34:05 +01:00
|
|
|
ui_settings.h
|
2014-08-24 03:22:05 +02:00
|
|
|
)
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2014-08-19 13:34:00 +02:00
|
|
|
set(UIS
|
2016-12-22 05:49:36 +01:00
|
|
|
configuration/configure.ui
|
|
|
|
configuration/configure_debug.ui
|
|
|
|
configuration/configure_general.ui
|
|
|
|
configuration/configure_graphics.ui
|
|
|
|
configuration/configure_input.ui
|
|
|
|
configuration/configure_system.ui
|
2014-08-19 13:34:00 +02:00
|
|
|
debugger/registers.ui
|
|
|
|
hotkeys.ui
|
|
|
|
main.ui
|
2014-08-24 03:22:05 +02:00
|
|
|
)
|
|
|
|
|
2018-01-12 03:21:20 +01:00
|
|
|
# file(GLOB_RECURSE ICONS ${CMAKE_SOURCE_DIR}/dist/icons/*)
|
2017-06-24 02:39:42 +02:00
|
|
|
file(GLOB_RECURSE THEMES ${CMAKE_SOURCE_DIR}/dist/qt_themes/*)
|
|
|
|
|
2014-08-24 03:22:05 +02:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS} ${UIS})
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2014-08-24 03:22:05 +02:00
|
|
|
if (Qt5_FOUND)
|
2014-08-19 13:34:00 +02:00
|
|
|
qt5_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
else()
|
|
|
|
qt4_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
endif()
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2015-03-08 01:07:49 +01:00
|
|
|
if (APPLE)
|
2015-09-11 22:08:42 +02:00
|
|
|
set(MACOSX_ICON "../../dist/citra.icns")
|
|
|
|
set_source_files_properties(${MACOSX_ICON} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
2018-01-12 03:21:20 +01:00
|
|
|
add_executable(yuzu MACOSX_BUNDLE ${SRCS} ${HEADERS} ${UI_HDRS} ${MACOSX_ICON})
|
|
|
|
set_target_properties(yuzu PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
2015-03-08 01:07:49 +01:00
|
|
|
else()
|
2018-01-12 03:21:20 +01:00
|
|
|
add_executable(yuzu ${SRCS} ${HEADERS} ${UI_HDRS})
|
2015-03-08 01:07:49 +01:00
|
|
|
endif()
|
2018-01-12 03:21:20 +01:00
|
|
|
target_link_libraries(yuzu PRIVATE common core input_common video_core)
|
|
|
|
target_link_libraries(yuzu PRIVATE Boost::boost glad Qt5::OpenGL Qt5::Widgets)
|
|
|
|
target_link_libraries(yuzu PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2016-10-10 07:58:05 +02:00
|
|
|
if(UNIX AND NOT APPLE)
|
2018-01-12 03:21:20 +01:00
|
|
|
install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-07-09 21:19:02 +02:00
|
|
|
endif()
|
2015-02-26 05:36:02 +01:00
|
|
|
|
2016-12-11 15:10:21 +01:00
|
|
|
if (MSVC)
|
2016-12-13 00:01:48 +01:00
|
|
|
include(CopyCitraQt5Deps)
|
|
|
|
include(CopyCitraSDLDeps)
|
2018-01-04 19:15:29 +01:00
|
|
|
include(CopyYuzuUnicornDeps)
|
2018-01-12 03:21:20 +01:00
|
|
|
copy_citra_Qt5_deps(yuzu)
|
|
|
|
copy_citra_SDL_deps(yuzu)
|
|
|
|
copy_yuzu_unicorn_deps(yuzu)
|
2015-02-26 05:36:02 +01:00
|
|
|
endif()
|