aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-02-23 11:19:52 +0100
committerGitHub Enterprise <[email protected]>2026-02-23 11:19:52 +0100
commit9aac0fd369b87e965fb34b5168646387de7ea1cd (patch)
tree367a820685a829adbab31cd1374b1af2cece4b7e /thirdparty/xmake.lua
parentchanged command names and descriptions to use class members instead of string... (diff)
downloadzen-9aac0fd369b87e965fb34b5168646387de7ea1cd.tar.xz
zen-9aac0fd369b87e965fb34b5168646387de7ea1cd.zip
implement yaml generation (#774)
this implements a yaml generation strategy similar to the JSON generation where we just build a string instead of building a ryml tree. This also removes the dependency on ryml for reduced binary/build times.
Diffstat (limited to 'thirdparty/xmake.lua')
-rw-r--r--thirdparty/xmake.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua
index 6fead7b50..7c99d910e 100644
--- a/thirdparty/xmake.lua
+++ b/thirdparty/xmake.lua
@@ -144,18 +144,3 @@ target("fmt")
add_headerfiles("fmt/include/**.h")
add_includedirs("fmt/include", {public=true})
-target("ryml")
- set_kind("static")
- set_group("thirdparty")
- add_files("ryml/src/**.cpp")
- add_files("ryml/ext/c4core/src/c4/*.cpp")
- add_headerfiles("ryml/ext/c4core/src/**.hpp")
- add_headerfiles("ryml/src/**.hpp")
- add_includedirs("ryml/src", {public=true})
- add_includedirs("ryml/ext/c4core/src", {public=true})
-
- if is_os("windows") then
- add_cxxflags("/wd4668") -- 'symbol' : undefined macro is treated as '0' in '#if/#elif' preprocessor directives
- else
- add_cxxflags("-Wno-unused-but-set-variable", "-Wno-undef")
- end