diff options
| author | xengineering <me@xengineering.eu> | 2025-12-22 21:25:02 +0100 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2025-12-22 21:25:02 +0100 |
| commit | 1e8a6233b8c50fb0ad429d91e2937a7917915347 (patch) | |
| tree | 6984b8927c0d4a78e993ebd19b87c762b3e47213 /linux/runner/main.cc | |
| parent | f849461c9200a098b9903739b54bf702abfc490b (diff) | |
| download | sia-app-1e8a6233b8c50fb0ad429d91e2937a7917915347.tar sia-app-1e8a6233b8c50fb0ad429d91e2937a7917915347.tar.zst sia-app-1e8a6233b8c50fb0ad429d91e2937a7917915347.zip | |
This was done using the following command.
flutter create \
--description "Sia app" \
--org "eu.xengineering" \
--project-name "sia_app" \
--platforms linux,android \
--empty \
.
Diffstat (limited to 'linux/runner/main.cc')
| -rw-r--r-- | linux/runner/main.cc | 6 |
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); +} |
