diff options
Diffstat (limited to 'src/zenhttp-test/xmake.lua')
| -rw-r--r-- | src/zenhttp-test/xmake.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/zenhttp-test/xmake.lua b/src/zenhttp-test/xmake.lua new file mode 100644 index 000000000..a6163e506 --- /dev/null +++ b/src/zenhttp-test/xmake.lua @@ -0,0 +1,15 @@ +-- Copyright Epic Games, Inc. All Rights Reserved. + +target("zenhttp-test") + set_kind("binary") + set_group("tests") + add_headerfiles("**.h") + add_files("*.cpp") + add_deps("zenhttp", "zencore") + add_packages("vcpkg::doctest") + + if is_plat("macosx") then + add_ldflags("-framework CoreFoundation") + add_ldflags("-framework Security") + add_ldflags("-framework SystemConfiguration") + end |