From befc1ba876323c2df0030b9828bcdfad93b4a092 Mon Sep 17 00:00:00 2001 From: ruki Date: Wed, 3 Apr 2024 22:54:03 +0800 Subject: add module.shared template --- xmake/templates/c++/module.shared/project/src/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 xmake/templates/c++/module.shared/project/src/main.cpp (limited to 'xmake/templates/c++/module.shared/project/src/main.cpp') diff --git a/xmake/templates/c++/module.shared/project/src/main.cpp b/xmake/templates/c++/module.shared/project/src/main.cpp new file mode 100644 index 000000000..7c775d288 --- /dev/null +++ b/xmake/templates/c++/module.shared/project/src/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char** argv) { + std::cout << "hello world!" << std::endl; + return 0; +} -- cgit v1.3.1