aboutsummaryrefslogtreecommitdiff
path: root/zenserver-test/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2023-05-02 10:01:47 +0200
committerGitHub <[email protected]>2023-05-02 10:01:47 +0200
commit075d17f8ada47e990fe94606c3d21df409223465 (patch)
treee50549b766a2f3c354798a54ff73404217b4c9af /zenserver-test/xmake.lua
parentfix: bundle shouldn't append content zip to zen (diff)
downloadzen-075d17f8ada47e990fe94606c3d21df409223465.tar.xz
zen-075d17f8ada47e990fe94606c3d21df409223465.zip
moved source directories into `/src` (#264)
* moved source directories into `/src` * updated bundle.lua for new `src` path * moved some docs, icon * removed old test trees
Diffstat (limited to 'zenserver-test/xmake.lua')
-rw-r--r--zenserver-test/xmake.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/zenserver-test/xmake.lua b/zenserver-test/xmake.lua
deleted file mode 100644
index f0b34f6ca..000000000
--- a/zenserver-test/xmake.lua
+++ /dev/null
@@ -1,16 +0,0 @@
--- Copyright Epic Games, Inc. All Rights Reserved.
-
-target("zenserver-test")
- set_kind("binary")
- add_headerfiles("**.h")
- add_files("*.cpp")
- add_files("zenserver-test.cpp", {unity_ignored = true })
- add_deps("zencore", "zenutil", "zenhttp")
- add_deps("zenserver", {inherit=false})
- add_packages("vcpkg::http-parser", "vcpkg::mimalloc")
-
- if is_plat("macosx") then
- add_ldflags("-framework CoreFoundation")
- add_ldflags("-framework Security")
- add_ldflags("-framework SystemConfiguration")
- end