From 6f3630064d22a8f1954a3dbd047a8621c86a6b44 Mon Sep 17 00:00:00 2001 From: xpxz <97490782+heheda123123@users.noreply.github.com> Date: Fri, 16 Jun 2023 06:17:51 +0800 Subject: [PATCH] add headeronly to chatscript (#2174) --- packages/c/chaiscript/xmake.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/c/chaiscript/xmake.lua b/packages/c/chaiscript/xmake.lua index 153101f88..2c4280cf8 100644 --- a/packages/c/chaiscript/xmake.lua +++ b/packages/c/chaiscript/xmake.lua @@ -1,5 +1,6 @@ package("chaiscript") + set_kind("library", {headeronly = true}) set_homepage("http://chaiscript.com") set_description("Header-only C++ embedded scripting language loosely based on ECMA script.") set_license("BSD-3-Clause") @@ -28,4 +29,4 @@ package("chaiscript") double d = chai.eval("function(3, 4.75);"); } ]]}, {configs = {languages = "c++14"}, includes = "chaiscript/chaiscript.hpp"})) - end) \ No newline at end of file + end)