mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
1. BUILD_ON_LINUX.md is instruction of building Linux version 2. Update toml files in scripts/makefile/ and /Makefile.toml to support Linux Building Windows/Linux release version is verified Didn't get chance to verify building macos version
7 lines
180 B
C++
7 lines
180 B
C++
#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);
|
|
}
|