2019-04-22 10:04:14 +08:00
|
|
|
# Header-only library
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO syoyo/tinygltf
|
2023-10-07 01:37:57 +08:00
|
|
|
REF "v${VERSION}"
|
2024-02-06 03:27:29 +08:00
|
|
|
SHA512 b9cb2283552268e690e17520882247273a60b38b50d27980c6921f897aa3234ac4a5920219fa7191c773d6d8848d097090f31fc4a720097322ffe5894c391687
|
2019-04-22 10:04:14 +08:00
|
|
|
HEAD_REF master
|
|
|
|
)
|
|
|
|
|
|
|
|
# Put the licence file where vcpkg expects it
|
2021-04-24 01:46:47 +08:00
|
|
|
# Copy the tinygltf header files and fix the path to json
|
2021-11-23 07:45:07 +08:00
|
|
|
vcpkg_replace_string("${SOURCE_PATH}/tiny_gltf.h" "#include \"json.hpp\"" "#include <nlohmann/json.hpp>")
|
|
|
|
file(INSTALL "${SOURCE_PATH}/tiny_gltf.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
|
2019-04-22 10:04:14 +08:00
|
|
|
|
2023-03-17 01:51:33 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|