From a58a7dcb07a1abb84c7b1662d2a7bb2d26aeef1d Mon Sep 17 00:00:00 2001 From: ruki Date: Fri, 13 Sep 2019 00:43:21 +0800 Subject: [PATCH] disable compile examples for bullet3 --- packages/b/bullet3/xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/b/bullet3/xmake.lua b/packages/b/bullet3/xmake.lua index 39e0483f5..1c93a1142 100644 --- a/packages/b/bullet3/xmake.lua +++ b/packages/b/bullet3/xmake.lua @@ -10,7 +10,7 @@ package("bullet3") add_deps("cmake") on_install("macosx", "linux", "windows", function (package) - local configs = {} + local configs = {"-DBUILD_CPU_DEMOS=OFF"} table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) import("package.tools.cmake").install(package, configs)