1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 12:37:45 +00:00
novus/extern/tinygltf/CMakeLists.txt

7 lines
263 B
Text
Raw Normal View History

find_package(nlohmann_json REQUIRED)
find_package(stb REQUIRED)
2023-09-23 14:08:41 -04:00
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)