mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-23 20:47:45 +00:00
It now builds Novus (and it's dependencies) for Windows and Linux. Artifacts and macOS support will come later.
7 lines
No EOL
272 B
CMake
7 lines
No EOL
272 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 stb::stb) |