Add frontend subdirectory to project

This commit is contained in:
hunteraraujo
2023-09-06 10:43:26 -07:00
parent d16d8b70e3
commit 121e79410b
139 changed files with 5180 additions and 20 deletions

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