commit b21122e
uint
·
2026-07-18 11:29:14 +0000 UTC
parent 6714f7d
add meson build
3 files changed,
+29,
-0
+3,
-0
1@@ -0,0 +1,3 @@
2+*.swp
3+*.swo
4+
+17,
-0
1@@ -0,0 +1,17 @@
2+project(
3+ 'Magnolia',
4+ 'c',
5+ default_options : [
6+ 'c_std=c89',
7+ 'warning_level=3',
8+ ],
9+)
10+
11+srcs = [
12+ 'source/main.c',
13+]
14+
15+executable(
16+ 'magnolia',
17+ srcs,
18+)
+9,
-0
1@@ -0,0 +1,9 @@
2+#include <stdio.h>
3+#include <stdlib.h>
4+
5+int main(void)
6+{
7+ puts("Hello Magnolia!");
8+ return EXIT_SUCCESS;
9+}
10+