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