add sample app

This commit is contained in:
Fabien Freling 2023-06-02 13:52:34 +02:00
parent c5181892ee
commit 45cf8302b3
44 changed files with 1278 additions and 1 deletions

6
app/linux/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);
}