From ac10bac2dfec08268ce3394532c61598540dc47b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 24 Apr 2024 16:16:17 -0400 Subject: [PATCH] Add stb dependency to tinygltf --- extern/tinygltf/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/tinygltf/CMakeLists.txt b/extern/tinygltf/CMakeLists.txt index 90e7894..4326ebb 100644 --- a/extern/tinygltf/CMakeLists.txt +++ b/extern/tinygltf/CMakeLists.txt @@ -4,4 +4,4 @@ find_package(stb REQUIRED) add_library(tinygltf STATIC) target_sources(tinygltf PRIVATE src/tiny_gltf.cc) target_include_directories(tinygltf PUBLIC include) -target_link_libraries(tinygltf PUBLIC nlohmann_json::nlohmann_json) \ No newline at end of file +target_link_libraries(tinygltf PUBLIC nlohmann_json::nlohmann_json stb::stb) \ No newline at end of file