aboutsummaryrefslogtreecommitdiff
path: root/src/zenremotestore-test/xmake.lua
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-10-02 16:16:03 +0200
committerGitHub Enterprise <[email protected]>2025-10-02 16:16:03 +0200
commit09262be45e2c0a0f2055acef92630986de3ab021 (patch)
tree3a3dbe6c5d2ac667197a80aa052f29b1d2118b49 /src/zenremotestore-test/xmake.lua
parentprojectstore refactor phase 2 (#539) (diff)
downloadzen-09262be45e2c0a0f2055acef92630986de3ab021.tar.xz
zen-09262be45e2c0a0f2055acef92630986de3ab021.zip
add zenremotestore lib (#540)
Diffstat (limited to 'src/zenremotestore-test/xmake.lua')
-rw-r--r--src/zenremotestore-test/xmake.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/zenremotestore-test/xmake.lua b/src/zenremotestore-test/xmake.lua
new file mode 100644
index 000000000..a78918c69
--- /dev/null
+++ b/src/zenremotestore-test/xmake.lua
@@ -0,0 +1,9 @@
+-- Copyright Epic Games, Inc. All Rights Reserved.
+
+target("zenremotestore-test")
+ set_kind("binary")
+ set_group("tests")
+ add_headerfiles("**.h")
+ add_files("*.cpp")
+ add_deps("zenstore", "zencore", "zenremotestore")
+ add_packages("vcpkg::doctest")