diff options
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu_cmd/CMakeLists.txt (renamed from src/citra/CMakeLists.txt) | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/citra/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt index ed92a6ae2..c6c527eb6 100644 --- a/src/citra/CMakeLists.txt +++ b/src/yuzu_cmd/CMakeLists.txt | |||
| @@ -15,21 +15,21 @@ set(HEADERS | |||
| 15 | 15 | ||
| 16 | create_directory_groups(${SRCS} ${HEADERS}) | 16 | create_directory_groups(${SRCS} ${HEADERS}) |
| 17 | 17 | ||
| 18 | add_executable(citra ${SRCS} ${HEADERS}) | 18 | add_executable(yuzu-cmd ${SRCS} ${HEADERS}) |
| 19 | target_link_libraries(citra PRIVATE common core input_common network) | 19 | target_link_libraries(yuzu-cmd PRIVATE common core input_common) |
| 20 | target_link_libraries(citra PRIVATE inih glad) | 20 | target_link_libraries(yuzu-cmd PRIVATE inih glad) |
| 21 | if (MSVC) | 21 | if (MSVC) |
| 22 | target_link_libraries(citra PRIVATE getopt) | 22 | target_link_libraries(yuzu-cmd PRIVATE getopt) |
| 23 | endif() | 23 | endif() |
| 24 | target_link_libraries(citra PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads) | 24 | target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads) |
| 25 | 25 | ||
| 26 | if(UNIX AND NOT APPLE) | 26 | if(UNIX AND NOT APPLE) |
| 27 | install(TARGETS citra RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") | 27 | install(TARGETS yuzu-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") |
| 28 | endif() | 28 | endif() |
| 29 | 29 | ||
| 30 | if (MSVC) | 30 | if (MSVC) |
| 31 | include(CopyCitraSDLDeps) | 31 | include(CopyCitraSDLDeps) |
| 32 | include(CopyYuzuUnicornDeps) | 32 | include(CopyYuzuUnicornDeps) |
| 33 | copy_citra_SDL_deps(citra) | 33 | copy_citra_SDL_deps(yuzu-cmd) |
| 34 | copy_yuzu_unicorn_deps(citra) | 34 | copy_yuzu_unicorn_deps(yuzu-cmd) |
| 35 | endif() | 35 | endif() |