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