diff options
| author | Stefan Boberg <[email protected]> | 2025-11-13 12:20:43 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-11-13 12:20:43 +0100 |
| commit | b6efb4f1988c57e16b3bd258a5a713be3f743e49 (patch) | |
| tree | 8ffe1c8b81afc68d54b6ac72a301b1c68ce2505b /thirdparty | |
| parent | 5.7.9 (diff) | |
| download | zen-5.7.10-pre0.tar.xz zen-5.7.10-pre0.zip | |
sentry/asan configuration tweaks (#649)v5.7.10-pre0
* Automated more of the decisions around which options to set when using ASAN
* Also disabled Sentry by default as it's a bit annoying to have it upload crashes during development. Sentry is still automatically enabled and integrated as part of the `xmake bundle` step however so released builds will still have it.
Diffstat (limited to 'thirdparty')
| -rw-r--r-- | thirdparty/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua index 6c5800f9d..35bbf87bf 100644 --- a/thirdparty/xmake.lua +++ b/thirdparty/xmake.lua @@ -53,7 +53,7 @@ target('protozero') target('spdlog') set_kind('headeronly') set_group('thirdparty') - add_headerfiles("spdlog/*.h") + add_headerfiles("spdlog/include/spdlog/**.h") add_includedirs("spdlog/include", {public=true}) target('cpr') @@ -61,7 +61,7 @@ target('cpr') set_group('thirdparty') set_languages("cxx20") add_files("cpr/cpr/*.cpp") - add_headerfiles("cpr/include/*.h") + add_headerfiles("cpr/include/**.h") add_includedirs("cpr/include", {public=true}) if is_os("windows") then add_cxxflags("/wd4668") |