diff options
| author | Stefan Boberg <[email protected]> | 2025-08-26 13:45:54 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-08-26 13:45:54 +0200 |
| commit | f4c029e6accbf8df3496e28ba9e07eed4cbde851 (patch) | |
| tree | ee3329f981e3c0b9609c90cfef4b610ffd2c4223 /src/zenmaster-test/xmake.lua | |
| parent | Merge pull request #139 from ue-foundation/de/zen-service-command (diff) | |
| download | zen-f4c029e6accbf8df3496e28ba9e07eed4cbde851.tar.xz zen-f4c029e6accbf8df3496e28ba9e07eed4cbde851.zip | |
zenmaster + zenmaster-test skeletons
Diffstat (limited to 'src/zenmaster-test/xmake.lua')
| -rw-r--r-- | src/zenmaster-test/xmake.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/zenmaster-test/xmake.lua b/src/zenmaster-test/xmake.lua new file mode 100644 index 000000000..ace6c4254 --- /dev/null +++ b/src/zenmaster-test/xmake.lua @@ -0,0 +1,17 @@ +-- Copyright Epic Games, Inc. All Rights Reserved. + +target("zenmaster-test") + set_kind("binary") + set_group("tests") + add_headerfiles("**.h") + add_files("*.cpp") + add_files("zenmaster-test.cpp", {unity_ignored = true }) + add_deps("zencore", "zenutil", "zenhttp") + add_deps("zenmaster", {inherit=false}) + add_packages("vcpkg::cpr", "vcpkg::http-parser", "vcpkg::mimalloc") + + if is_plat("macosx") then + add_ldflags("-framework CoreFoundation") + add_ldflags("-framework Security") + add_ldflags("-framework SystemConfiguration") + end |