diff options
Diffstat (limited to 'zentest-appstub/xmake.lua')
| -rw-r--r-- | zentest-appstub/xmake.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zentest-appstub/xmake.lua b/zentest-appstub/xmake.lua new file mode 100644 index 000000000..d43b05028 --- /dev/null +++ b/zentest-appstub/xmake.lua @@ -0,0 +1,12 @@ +-- Copyright Epic Games, Inc. All Rights Reserved. + +target("zentest-appstub") + set_kind("binary") + add_headerfiles("**.h") + add_files("*.cpp") + + if is_plat("macosx") then + add_ldflags("-framework CoreFoundation") + add_ldflags("-framework Security") + add_ldflags("-framework SystemConfiguration") + end |