summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/native_aot/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-20 22:33:30 +0800
committerruki <[email protected]>2026-03-20 22:33:30 +0800
commit2b0964deaf94355eea91dff12d017525b49c3737 (patch)
tree8fc1d3decacbf9d2371ef58f96ebbad13316627e /tests/projects/csharp/native_aot/xmake.lua
parentfaac0865a79ef38c47bb81d7fa3b42f05ace5538 (diff)
remove native_aot
Diffstat (limited to 'tests/projects/csharp/native_aot/xmake.lua')
-rw-r--r--tests/projects/csharp/native_aot/xmake.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/projects/csharp/native_aot/xmake.lua b/tests/projects/csharp/native_aot/xmake.lua
deleted file mode 100644
index 92f264095..000000000
--- a/tests/projects/csharp/native_aot/xmake.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-add_rules("mode.debug", "mode.release")
-
-target("cslib")
- set_kind("shared")
- add_files("src/cslib/*.cs")
- set_values("csharp.publish_aot", "true")
-
-target("app")
- set_kind("binary")
- add_deps("cslib")
- add_files("src/app/*.cpp")