We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926b9ed commit 49f73edCopy full SHA for 49f73ed
1 file changed
xmake.lua
@@ -7,6 +7,7 @@ set_warnings("all")
7
set_languages("c++20")
8
9
option("github_action")
10
+option("lsf_debug")
11
12
local lsf_url="https://gitee.com/californiacat/lsf.git"
13
@@ -34,7 +35,13 @@ local openssl_package_name = ""
34
35
36
local platform_cpp_file=""
37
-add_requires("lsf")
38
+if has_config("lsf_debug") then
39
+ add_requires("lsf",{configs = {debug = true}})
40
+
41
+else
42
+ add_requires("lsf")
43
+end
44
45
46
if is_os("windows") then
47
set_encodings("utf-8")
0 commit comments