summaryrefslogtreecommitdiff
path: root/linux/runner/main.cc
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2026-02-08 10:10:24 -0500
committerMica White <botahamec@outlook.com>2026-02-08 10:10:24 -0500
commit1716cf45d0e4e41c7833105dab10542f5ed5dcf1 (patch)
tree99ae387cfb3b96c30bbe3fd4cd619dc291505f68 /linux/runner/main.cc
Initial commitHEADmain
Diffstat (limited to 'linux/runner/main.cc')
-rw-r--r--linux/runner/main.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/linux/runner/main.cc b/linux/runner/main.cc
new file mode 100644
index 0000000..4340ffc
--- /dev/null
+++ b/linux/runner/main.cc
@@ -0,0 +1,6 @@
+#include "my_application.h"
+
+int main(int argc, char** argv) {
+ g_autoptr(MyApplication) app = my_application_new();
+ return g_application_run(G_APPLICATION(app), argc, argv);
+}