소스 검색

tinygltf: Remove vendor install (#6298)

star9029 7 달 전
부모
커밋
eb7726e3b9
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      packages/t/tinygltf/xmake.lua

+ 2 - 1
packages/t/tinygltf/xmake.lua

@@ -22,7 +22,8 @@ package("tinygltf")
     on_install(function (package)
         local configs = {
             "-DTINYGLTF_BUILD_LOADER_EXAMPLE=OFF",
-            "-DTINYGLTF_HEADER_ONLY=ON"
+            "-DTINYGLTF_HEADER_ONLY=ON",
+            "-DTINYGLTF_INSTALL_VENDOR=OFF",
         }
         table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
         table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))