This commit is contained in:
Pcornat 2024-10-24 11:02:04 +02:00
commit dfe1880c08
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
5 changed files with 125 additions and 0 deletions

7
main.cpp Normal file
View file

@ -0,0 +1,7 @@
#include "hello_world.hpp"
#include <gtkmm/application.h>
int main(int argc, char *argv[]) {
auto app = Gtk::Application::create("org.gtkmm.example");
return app->make_window_and_run<learn_gtkmm4::HelloWorld>(argc, argv);
}