diff options
Diffstat (limited to 'xmake/templates/csharp/static/xmake.lua')
| -rw-r--r-- | xmake/templates/csharp/static/xmake.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/xmake/templates/csharp/static/xmake.lua b/xmake/templates/csharp/static/xmake.lua new file mode 100644 index 000000000..51bce92a0 --- /dev/null +++ b/xmake/templates/csharp/static/xmake.lua @@ -0,0 +1,10 @@ +target("foo") + set_kind("static") + add_files("src/foo.cs") + +target("${TARGET_NAME}_demo") + set_kind("binary") + add_deps("foo") + add_files("src/main.cs") + +${FAQ} |
