aboutsummaryrefslogtreecommitdiff
path: root/zenstore
diff options
context:
space:
mode:
Diffstat (limited to 'zenstore')
-rw-r--r--zenstore/filecas.cpp1
-rw-r--r--zenstore/xmake.lua5
2 files changed, 6 insertions, 0 deletions
diff --git a/zenstore/filecas.cpp b/zenstore/filecas.cpp
index 2ae2676d3..56d25e729 100644
--- a/zenstore/filecas.cpp
+++ b/zenstore/filecas.cpp
@@ -355,6 +355,7 @@ FileCasStrategy::Flush()
void
FileCasStrategy::GarbageCollect(GcContext& GcCtx)
{
+ ZEN_UNUSED(GcCtx);
}
} // namespace zen
diff --git a/zenstore/xmake.lua b/zenstore/xmake.lua
new file mode 100644
index 000000000..bd76f3b2b
--- /dev/null
+++ b/zenstore/xmake.lua
@@ -0,0 +1,5 @@
+target('zenstore')
+ set_kind("static")
+ add_files("**.cpp")
+ add_includedirs("include", {public=true})
+ add_deps("zencore")