aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-08 15:21:06 +0200
committerdec05eba <dec05eba@protonmail.com>2018-10-08 15:21:06 +0200
commitc50ef935e0792eeb0256ddf5df87af015f3ae1d8 (patch)
tree809a89abc102d6bd90da9c44cdfdc187655b4687 /src
Initial commit
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..e085836
--- /dev/null
+++ b/src/main.cpp
@@ -0,0 +1,13 @@
+#include <gtkmm.h>
+
+int main(int argc, char *argv[])
+{
+ auto app =
+ Gtk::Application::create(argc, argv,
+ "org.gtkmm.examples.base");
+
+ Gtk::Window window;
+ window.set_default_size(200, 200);
+
+ return app->run(window);
+}