2016-12-12 15:01:48 -08:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
|
|
|
|
2014-08-23 18:22:05 -07:00
|
|
|
set(SRCS
|
2016-03-01 09:24:18 -08:00
|
|
|
emu_window/emu_window_sdl2.cpp
|
2014-09-12 17:06:13 -07:00
|
|
|
config.cpp
|
2018-01-11 19:38:17 -08:00
|
|
|
yuzu.cpp
|
|
|
|
yuzu.rc
|
2014-08-23 18:22:05 -07:00
|
|
|
)
|
|
|
|
set(HEADERS
|
2016-03-01 09:24:18 -08:00
|
|
|
emu_window/emu_window_sdl2.h
|
2014-09-12 17:06:13 -07:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-23 18:22:05 -07:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-26 14:34:48 -07:00
|
|
|
|
2018-01-11 18:21:20 -08: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 17:59:00 -07:00
|
|
|
if (MSVC)
|
2018-01-11 18:21:20 -08:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE getopt)
|
2015-06-22 17:59:00 -07:00
|
|
|
endif()
|
2018-01-11 18:21:20 -08:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads)
|
2014-04-30 16:56:25 -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-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-08-29 23:37:42 -07:00
|
|
|
endif()
|
2016-03-01 09:24:18 -08:00
|
|
|
|
|
|
|
if (MSVC)
|
2016-12-12 15:01:48 -08:00
|
|
|
include(CopyCitraSDLDeps)
|
2018-01-04 10:15:29 -08:00
|
|
|
include(CopyYuzuUnicornDeps)
|
2018-01-11 18:21:20 -08:00
|
|
|
copy_citra_SDL_deps(yuzu-cmd)
|
|
|
|
copy_yuzu_unicorn_deps(yuzu-cmd)
|
2016-03-01 09:24:18 -08:00
|
|
|
endif()
|