summaryrefslogtreecommitdiff
path: root/common/c_cpp
diff options
context:
space:
mode:
authorHunter Kvalevog <hunter@kvog.sh>2025-11-22 16:37:55 +0000
committerHunter Kvalevog <hunter@kvog.sh>2025-11-22 16:37:55 +0000
commita18ad3a6436eb298bea80223aa3be57d63c948ab (patch)
tree7ebd712d0cf32f713eb14d5d592c411df4c08b8d /common/c_cpp
parent2890cf45c1ad62bf8496f15dfb4796f9c71c02eb (diff)
shaders: Fix Linux build
Diffstat (limited to 'common/c_cpp')
-rw-r--r--common/c_cpp/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/c_cpp/CMakeLists.txt b/common/c_cpp/CMakeLists.txt
index f87b1d5..5ab146e 100644
--- a/common/c_cpp/CMakeLists.txt
+++ b/common/c_cpp/CMakeLists.txt
@@ -96,7 +96,7 @@ if(DEMO_NEEDS_SDL3)
target_link_libraries(common INTERFACE SDL3::SDL3)
else()
find_package(PkgConfig REQUIRED)
- pkg_check_modules(SDL3 REQUIRED IMPORTED_TARGET SDL3)
- target_link_libraries(common INTERFACE PkgConfig::SDL3)
+ pkg_check_modules(sdl3 REQUIRED IMPORTED_TARGET sdl3)
+ target_link_libraries(common INTERFACE PkgConfig::sdl3)
endif()
endif() \ No newline at end of file