summaryrefslogtreecommitdiff
path: root/linux/runner/main.cc
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2024-12-16 16:04:07 +0100
committerOrangerot <purple@orangerot.dev>2024-12-17 09:08:55 +0100
commit08f2adb6397557ac27cf3780aa8f8222cbc51982 (patch)
treef9ee48a8f120e9bcb93f6f172fd88a89f3d45372 /linux/runner/main.cc
Initial Commit
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..e7c5c54
--- /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);
+}