2016-12-13 00:01:48 +01:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
|
|
|
|
2014-08-23 22:22:05 -03:00
|
|
|
set(SRCS
|
2016-03-01 17:24:18 +00:00
|
|
|
emu_window/emu_window_sdl2.cpp
|
2014-09-12 17:06:13 -07:00
|
|
|
config.cpp
|
2018-01-11 20:38:17 -07:00
|
|
|
yuzu.cpp
|
|
|
|
yuzu.rc
|
2014-08-23 22:22:05 -03:00
|
|
|
)
|
|
|
|
set(HEADERS
|
2016-03-01 17:24:18 +00:00
|
|
|
emu_window/emu_window_sdl2.h
|
2014-09-12 17:06:13 -07:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-23 22:22:05 -03:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-26 17:34:48 -04:00
|
|
|
|
2018-01-11 19:21:20 -07:00
|
|
|
add_executable(yuzu-cmd ${SRCS} ${HEADERS})
|
|
|
|
target_link_libraries(yuzu-cmd PRIVATE common core input_common)
|
|
|
|
target_link_libraries(yuzu-cmd PRIVATE inih glad)
|
2015-06-22 20:59:00 -04:00
|
|
|
if (MSVC)
|
2018-01-11 19:21:20 -07:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE getopt)
|
2015-06-22 20:59:00 -04:00
|
|
|
endif()
|
2018-01-11 19:21:20 -07:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads)
|
2014-04-30 16:56:25 -07:00
|
|
|
|
2016-10-10 05:58:05 +00:00
|
|
|
if(UNIX AND NOT APPLE)
|
2018-01-11 19:21:20 -07:00
|
|
|
install(TARGETS yuzu-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-08-30 03:37:42 -03:00
|
|
|
endif()
|
2016-03-01 17:24:18 +00:00
|
|
|
|
|
|
|
if (MSVC)
|
2018-01-13 23:49:16 +00:00
|
|
|
include(CopyYuzuSDLDeps)
|
2018-01-04 13:15:29 -05:00
|
|
|
include(CopyYuzuUnicornDeps)
|
2018-01-13 23:49:16 +00:00
|
|
|
copy_yuzu_SDL_deps(yuzu-cmd)
|
2018-01-11 19:21:20 -07:00
|
|
|
copy_yuzu_unicorn_deps(yuzu-cmd)
|
2016-03-01 17:24:18 +00:00
|
|
|
endif()
|