diff options
| -rw-r--r-- | zentest-appstub/xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zentest-appstub/xmake.lua b/zentest-appstub/xmake.lua index d43b05028..d8e0283c1 100644 --- a/zentest-appstub/xmake.lua +++ b/zentest-appstub/xmake.lua @@ -5,6 +5,10 @@ target("zentest-appstub") add_headerfiles("**.h") add_files("*.cpp") + if is_os("linux") then + add_syslinks("pthread") + end + if is_plat("macosx") then add_ldflags("-framework CoreFoundation") add_ldflags("-framework Security") |