yuzu/src/yuzu_cmd/CMakeLists.txt

36 lines
970 B
CMake
Raw Normal View History

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
set(SRCS
emu_window/emu_window_sdl2.cpp
config.cpp
2018-01-12 04:38:17 +01:00
yuzu.cpp
yuzu.rc
)
set(HEADERS
emu_window/emu_window_sdl2.h
config.h
default_ini.h
resource.h
)
create_directory_groups(${SRCS} ${HEADERS})
2013-09-26 23:34:48 +02:00
2018-01-12 03:21:20 +01: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)
if (MSVC)
2018-01-12 03:21:20 +01:00
target_link_libraries(yuzu-cmd PRIVATE getopt)
endif()
2018-01-12 03:21:20 +01:00
target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads)
2014-05-01 01:56:25 +02:00
if(UNIX AND NOT APPLE)
2018-01-12 03:21:20 +01:00
install(TARGETS yuzu-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
endif()
if (MSVC)
include(CopyCitraSDLDeps)
include(CopyYuzuUnicornDeps)
2018-01-12 03:21:20 +01:00
copy_citra_SDL_deps(yuzu-cmd)
copy_yuzu_unicorn_deps(yuzu-cmd)
endif()