summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/shared_library/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/csharp/shared_library/xmake.lua')
-rw-r--r--tests/projects/csharp/shared_library/xmake.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/projects/csharp/shared_library/xmake.lua b/tests/projects/csharp/shared_library/xmake.lua
new file mode 100644
index 000000000..f8549444e
--- /dev/null
+++ b/tests/projects/csharp/shared_library/xmake.lua
@@ -0,0 +1,12 @@
+add_rules("mode.debug", "mode.release")
+
+target("mylib")
+ set_kind("shared")
+ add_rules("csharp")
+ add_files("src/lib/*.cs")
+
+target("app")
+ set_kind("binary")
+ add_rules("csharp")
+ add_deps("mylib")
+ add_files("src/app/*.cs")