summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Liam2022-12-04 10:59:58 -0500
committerGravatar Liam2022-12-04 10:59:58 -0500
commit0cbfdf7ecbb5e73f4fc79e7763018c39dc7cd9aa (patch)
treed6b9958e223161972053811114ad3a953d87ee30 /src
parentMerge pull request #9375 from jbeich/xbyak-no-install (diff)
downloadyuzu-0cbfdf7ecbb5e73f4fc79e7763018c39dc7cd9aa.tar.gz
yuzu-0cbfdf7ecbb5e73f4fc79e7763018c39dc7cd9aa.tar.xz
yuzu-0cbfdf7ecbb5e73f4fc79e7763018c39dc7cd9aa.zip
yuzu-cmd: link SDL2 correctly
Diffstat (limited to 'src')
-rw-r--r--src/yuzu_cmd/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt
index 607b4e6aa..1c0c1a9fe 100644
--- a/src/yuzu_cmd/CMakeLists.txt
+++ b/src/yuzu_cmd/CMakeLists.txt
@@ -38,7 +38,7 @@ target_link_libraries(yuzu-cmd PRIVATE inih glad)
38if (MSVC) 38if (MSVC)
39 target_link_libraries(yuzu-cmd PRIVATE getopt) 39 target_link_libraries(yuzu-cmd PRIVATE getopt)
40endif() 40endif()
41target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads) 41target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
42 42
43create_resource("../../dist/yuzu.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon") 43create_resource("../../dist/yuzu.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon")
44target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR}) 44target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR})