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
No EOL
263 B
CMake

find_package(nlohmann_json REQUIRED)
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)