summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-11-28 20:04:29 -0600
committerLibravatar bigfoot547 <[email protected]>2025-11-28 21:10:48 -0600
commit9b411ad354b8ab7364bcc2a0fe21f7dcd5f46c3d (patch)
tree965e64c704b567c31f7ab35aae6430c2fb30aae3
initial commitHEADmaster
-rw-r--r--.gitignore3
-rw-r--r--main.c1
-rw-r--r--meson.build2
3 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b6868bb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+compile_commands.json
+.cache
+builddir
diff --git a/main.c b/main.c
new file mode 100644
index 0000000..78f2de1
--- /dev/null
+++ b/main.c
@@ -0,0 +1 @@
+int main(void) { return 0; }
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..bc98f59
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,2 @@
+project('ptxmc', 'c')
+executable('ptxmc', 'main.c')