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
|
|
|
|
2018-01-18 00:37:34 +00:00
|
|
|
add_executable(yuzu
|
|
|
|
Info.plist
|
|
|
|
about_dialog.cpp
|
|
|
|
about_dialog.h
|
|
|
|
bootmanager.cpp
|
|
|
|
bootmanager.h
|
|
|
|
configuration/config.cpp
|
|
|
|
configuration/config.h
|
|
|
|
configuration/configure_debug.cpp
|
|
|
|
configuration/configure_debug.h
|
|
|
|
configuration/configure_dialog.cpp
|
|
|
|
configuration/configure_dialog.h
|
|
|
|
configuration/configure_general.cpp
|
|
|
|
configuration/configure_general.h
|
|
|
|
configuration/configure_graphics.cpp
|
|
|
|
configuration/configure_graphics.h
|
|
|
|
configuration/configure_input.cpp
|
|
|
|
configuration/configure_input.h
|
|
|
|
configuration/configure_system.cpp
|
|
|
|
configuration/configure_system.h
|
2018-03-22 20:19:35 +00:00
|
|
|
debugger/graphics/graphics_breakpoint_observer.cpp
|
|
|
|
debugger/graphics/graphics_breakpoint_observer.h
|
|
|
|
debugger/graphics/graphics_breakpoints.cpp
|
|
|
|
debugger/graphics/graphics_breakpoints.h
|
|
|
|
debugger/graphics/graphics_breakpoints_p.h
|
|
|
|
debugger/graphics/graphics_surface.cpp
|
|
|
|
debugger/graphics/graphics_surface.h
|
2018-07-02 17:10:41 +00:00
|
|
|
debugger/console.cpp
|
|
|
|
debugger/console.h
|
2018-01-18 00:37:34 +00:00
|
|
|
debugger/profiler.cpp
|
|
|
|
debugger/profiler.h
|
|
|
|
debugger/wait_tree.cpp
|
|
|
|
debugger/wait_tree.h
|
|
|
|
game_list.cpp
|
|
|
|
game_list.h
|
|
|
|
game_list_p.h
|
|
|
|
hotkeys.cpp
|
|
|
|
hotkeys.h
|
|
|
|
main.cpp
|
|
|
|
main.h
|
|
|
|
ui_settings.cpp
|
|
|
|
ui_settings.h
|
|
|
|
util/spinbox.cpp
|
|
|
|
util/spinbox.h
|
|
|
|
util/util.cpp
|
|
|
|
util/util.h
|
|
|
|
yuzu.rc
|
|
|
|
)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
set(UIS
|
2018-01-18 00:37:34 +00:00
|
|
|
aboutdialog.ui
|
|
|
|
configuration/configure.ui
|
|
|
|
configuration/configure_debug.ui
|
|
|
|
configuration/configure_general.ui
|
|
|
|
configuration/configure_graphics.ui
|
|
|
|
configuration/configure_input.ui
|
|
|
|
configuration/configure_system.ui
|
|
|
|
hotkeys.ui
|
|
|
|
main.ui
|
|
|
|
)
|
2014-08-24 01:22:05 +00:00
|
|
|
|
2018-01-14 18:15:45 +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/*)
|
|
|
|
|
2018-01-16 16:51:08 +00:00
|
|
|
qt5_wrap_ui(UI_HDRS ${UIS})
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2018-01-18 00:37:34 +00:00
|
|
|
target_sources(yuzu
|
|
|
|
PRIVATE
|
|
|
|
${ICONS}
|
|
|
|
${THEMES}
|
|
|
|
${UI_HDRS}
|
|
|
|
${UIS}
|
|
|
|
)
|
|
|
|
|
2015-03-08 00:07:49 +00:00
|
|
|
if (APPLE)
|
2018-01-13 22:39:31 +00:00
|
|
|
set(MACOSX_ICON "../../dist/yuzu.icns")
|
2015-09-11 20:08:42 +00:00
|
|
|
set_source_files_properties(${MACOSX_ICON} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
2018-01-18 00:37:34 +00:00
|
|
|
target_sources(yuzu PRIVATE ${MACOSX_ICON})
|
|
|
|
set_target_properties(yuzu PROPERTIES MACOSX_BUNDLE TRUE)
|
2018-01-12 02:21:20 +00:00
|
|
|
set_target_properties(yuzu PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
2018-07-02 17:10:41 +00:00
|
|
|
elseif(WIN32)
|
|
|
|
# compile as a win32 gui application instead of a console application
|
|
|
|
target_link_libraries(yuzu PRIVATE Qt5::WinMain)
|
|
|
|
if(MSVC)
|
|
|
|
set_target_properties(yuzu PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS")
|
|
|
|
elseif(MINGW)
|
|
|
|
set_target_properties(yuzu PROPERTIES LINK_FLAGS_RELEASE "-mwindows")
|
|
|
|
endif()
|
2015-03-08 00:07:49 +00:00
|
|
|
endif()
|
2018-01-18 00:37:34 +00:00
|
|
|
|
|
|
|
create_target_directory_groups(yuzu)
|
|
|
|
|
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)
|
2018-01-14 04:17:42 +00:00
|
|
|
include(CopyYuzuQt5Deps)
|
|
|
|
include(CopyYuzuSDLDeps)
|
2018-01-04 18:15:29 +00:00
|
|
|
include(CopyYuzuUnicornDeps)
|
2018-01-13 22:14:04 +00:00
|
|
|
copy_yuzu_Qt5_deps(yuzu)
|
|
|
|
copy_yuzu_SDL_deps(yuzu)
|
2018-01-12 02:21:20 +00:00
|
|
|
copy_yuzu_unicorn_deps(yuzu)
|
2015-02-26 04:36:02 +00:00
|
|
|
endif()
|