Json.cmake 313 B

1234567891011121314
  1. # -*- cmake -*-
  2. if (JSON_CMAKE_INCLUDED)
  3. return()
  4. endif (JSON_CMAKE_INCLUDED)
  5. set (JSON_CMAKE_INCLUDED TRUE)
  6. # Let's reuse the nlohmann/json implementation bundled together with
  7. # tinygltf. HB
  8. include(Prebuilt)
  9. use_prebuilt_binary(tinygltf)
  10. include_directories(SYSTEM ${LIBS_PREBUILT_DIR}/include/tinygltf)