diff options
Diffstat (limited to 'thirdparty/xmake.lua')
| -rw-r--r-- | thirdparty/xmake.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua index d745a5109..c9acfa018 100644 --- a/thirdparty/xmake.lua +++ b/thirdparty/xmake.lua @@ -43,3 +43,9 @@ target('rpmalloc') add_files("rpmalloc/rpmalloc.c") add_headerfiles("rpmalloc/**.h") add_includedirs("rpmalloc", {public=true}) + +target('protozero') + set_kind('headeronly') + set_group('thirdparty') + add_headerfiles("protozero/**.hpp") + add_includedirs("protozero/include", {public=true}) |