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