summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/CMakeLists.txt
diff options
context:
space:
mode:
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
16create_directory_groups(${SRCS} ${HEADERS}) 16create_directory_groups(${SRCS} ${HEADERS})
17 17
18add_executable(citra ${SRCS} ${HEADERS}) 18add_executable(yuzu-cmd ${SRCS} ${HEADERS})
19target_link_libraries(citra PRIVATE common core input_common network) 19target_link_libraries(yuzu-cmd PRIVATE common core input_common)
20target_link_libraries(citra PRIVATE inih glad) 20target_link_libraries(yuzu-cmd PRIVATE inih glad)
21if (MSVC) 21if (MSVC)
22 target_link_libraries(citra PRIVATE getopt) 22 target_link_libraries(yuzu-cmd PRIVATE getopt)
23endif() 23endif()
24target_link_libraries(citra PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads) 24target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads)
25 25
26if(UNIX AND NOT APPLE) 26if(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")
28endif() 28endif()
29 29
30if (MSVC) 30if (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)
35endif() 35endif()