summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2025-05-15 10:26:06 -0600
committerGitHub <noreply@github.com>2025-05-15 10:26:06 -0600
commit0e35858050fd00e5871f0ac9d1684edc61251d49 (patch)
treeebb98aa1d712b19ee4ef00fa8c82dd9c2b5444c6
parent32632cacdb316d7f2d3b6ecdb634f0ef9aebadf0 (diff)
Fix build (#197)
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2638eaef4..d27231954 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -403,7 +403,7 @@ if(USE_NETWORKING)
target_link_libraries(${PROJECT_NAME} PRIVATE SDL2_net)
else()
find_package(SDL2_net REQUIRED)
- target_link_libraries(${PROJECT_NAME} PRIVATE SDL2_net::SDL2_net)
+ target_link_libraries(${PROJECT_NAME} PRIVATE SDL2_net::SDL2_net-static)
endif()
endif()