Added config files for Linux
Some checks failed
Build Linux App / build (push) Failing after 3m3s

This commit is contained in:
Kazimierz Ciołek
2026-02-19 15:08:51 +01:00
parent 600a79ac25
commit ee4a5c6ce8
10 changed files with 482 additions and 0 deletions

6
linux/runner/main.cc Normal file
View File

@@ -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);
}