浏览代码

improve pcre2

ruki 5 年之前
父节点
当前提交
64f49bdfdc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/p/pcre2/xmake.lua

+ 1 - 1
packages/p/pcre2/xmake.lua

@@ -28,7 +28,7 @@ package("pcre2")
  
     if is_plat("windows") and winos.version():gt("winxp") then
         on_install("windows", function (package)
-            local configs = {}
+            local configs = {"-DPCRE2_BUILD_TESTS=OFF", "-DPCRE2_BUILD_PCRE2GREP=OFF"}
             table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
             table.insert(configs, "-DPCRE2_SUPPORT_JIT=" .. (package:config("jit") and "ON" or "OFF"))
             local bitwidth = package:config("bitwidth") or "8"