2014-08-18 04:35:44 +00:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
2017-06-24 00:39:42 +00:00
|
|
|
set(CMAKE_AUTORCC ON)
|
2014-08-18 04:35:44 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2016-12-11 14:36:34 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
2014-08-18 04:35:44 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
set(SRCS
|
2016-12-22 04:49:36 +00: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 16:53:25 +00:00
|
|
|
debugger/profiler.cpp
|
2014-04-23 02:42:29 +00:00
|
|
|
debugger/registers.cpp
|
2016-04-08 16:28:54 +00:00
|
|
|
debugger/wait_tree.cpp
|
2014-11-01 14:36:59 +00:00
|
|
|
util/spinbox.cpp
|
2015-08-19 20:00:56 +00:00
|
|
|
util/util.cpp
|
2014-08-24 01:22:05 +00:00
|
|
|
bootmanager.cpp
|
2016-01-24 17:34:05 +00:00
|
|
|
game_list.cpp
|
2014-04-11 00:50:10 +00:00
|
|
|
hotkeys.cpp
|
|
|
|
main.cpp
|
2016-01-24 17:34:05 +00:00
|
|
|
ui_settings.cpp
|
2018-01-12 04:56:15 +00:00
|
|
|
yuzu.rc
|
2015-09-11 20:06:19 +00:00
|
|
|
Info.plist
|
2014-08-24 01:22:05 +00:00
|
|
|
)
|
2014-08-18 04:35:44 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
set(HEADERS
|
2016-12-22 04:49:36 +00: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 16:53:25 +00:00
|
|
|
debugger/profiler.h
|
2015-01-03 23:51:14 +00:00
|
|
|
debugger/registers.h
|
2016-04-08 16:28:54 +00:00
|
|
|
debugger/wait_tree.h
|
2015-01-03 23:51:14 +00:00
|
|
|
util/spinbox.h
|
2015-08-19 20:00:56 +00:00
|
|
|
util/util.h
|
2015-01-03 23:51:14 +00:00
|
|
|
bootmanager.h
|
2016-01-24 17:34:05 +00:00
|
|
|
game_list.h
|
2016-04-30 07:33:11 +00:00
|
|
|
game_list_p.h
|
2015-01-03 23:51:14 +00:00
|
|
|
hotkeys.h
|
|
|
|
main.h
|
2016-01-24 17:34:05 +00:00
|
|
|
ui_settings.h
|
2014-08-24 01:22:05 +00:00
|
|
|
)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
set(UIS
|
2016-12-22 04:49:36 +00: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 11:34:00 +00:00
|
|
|
debugger/registers.ui
|
|
|
|
hotkeys.ui
|
|
|
|
main.ui
|
2014-08-24 01:22:05 +00:00
|
|
|
)
|
|
|
|
|
2018-01-12 02:21:20 +00:00
|
|
|
# file(GLOB_RECURSE ICONS ${CMAKE_SOURCE_DIR}/dist/icons/*)
|
2017-06-24 00:39:42 +00:00
|
|
|
file(GLOB_RECURSE THEMES ${CMAKE_SOURCE_DIR}/dist/qt_themes/*)
|
|
|
|
|
2014-08-24 01:22:05 +00:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS} ${UIS})
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-24 01:22:05 +00:00
|
|
|
if (Qt5_FOUND)
|
2014-08-19 11:34:00 +00:00
|
|
|
qt5_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
else()
|
|
|
|
qt4_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
endif()
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-03-08 00:07:49 +00:00
|
|
|
if (APPLE)
|
2015-09-11 20:08:42 +00:00
|
|
|
set(MACOSX_ICON "../../dist/citra.icns")
|
|
|
|
set_source_files_properties(${MACOSX_ICON} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
2018-01-12 02:21:20 +00: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 00:07:49 +00:00
|
|
|
else()
|
2018-01-12 02:21:20 +00:00
|
|
|
add_executable(yuzu ${SRCS} ${HEADERS} ${UI_HDRS})
|
2015-03-08 00:07:49 +00:00
|
|
|
endif()
|
2018-01-12 02:21:20 +00: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 02:26:50 +00:00
|
|
|
|
2016-10-10 05:58:05 +00:00
|
|
|
if(UNIX AND NOT APPLE)
|
2018-01-12 02:21:20 +00:00
|
|
|
install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-07-09 19:19:02 +00:00
|
|
|
endif()
|
2015-02-26 04:36:02 +00:00
|
|
|
|
2016-12-11 14:10:21 +00:00
|
|
|
if (MSVC)
|
2016-12-12 23:01:48 +00:00
|
|
|
include(CopyCitraQt5Deps)
|
|
|
|
include(CopyCitraSDLDeps)
|
2018-01-04 18:15:29 +00:00
|
|
|
include(CopyYuzuUnicornDeps)
|
2018-01-12 02:21:20 +00:00
|
|
|
copy_citra_Qt5_deps(yuzu)
|
|
|
|
copy_citra_SDL_deps(yuzu)
|
|
|
|
copy_yuzu_unicorn_deps(yuzu)
|
2015-02-26 04:36:02 +00:00
|
|
|
endif()
|