summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/module.shared/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/templates/c++/module.shared/xmake.lua')
-rw-r--r--xmake/templates/c++/module.shared/xmake.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/xmake/templates/c++/module.shared/xmake.lua b/xmake/templates/c++/module.shared/xmake.lua
deleted file mode 100644
index 43aafe904..000000000
--- a/xmake/templates/c++/module.shared/xmake.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-add_rules("mode.debug", "mode.release")
-
-add_moduledirs("modules")
-
-target("${TARGET_NAME}")
- set_kind("binary")
- add_files("src/*.cpp")
- on_config(function (target)
- import("shared.foo")
- print("shared: 1 + 1 = %s", foo.add(1, 1))
- print("shared: 1 - 1 = %s", foo.sub(1, 1))
- end)
-
-${FAQ}
-