summaryrefslogtreecommitdiffstats
path: root/Tests/FindGTK2/gtkmm/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindGTK2/gtkmm/main.cpp')
-rw-r--r--Tests/FindGTK2/gtkmm/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/FindGTK2/gtkmm/main.cpp b/Tests/FindGTK2/gtkmm/main.cpp
new file mode 100644
index 0000000..29e23fd
--- /dev/null
+++ b/Tests/FindGTK2/gtkmm/main.cpp
@@ -0,0 +1,14 @@
+#include <gtkmm.h>
+
+#include "helloworld.h"
+
+int main(int argc, char* argv[])
+{
+ Gtk::Main kit(argc, argv);
+
+ HelloWorld helloworld;
+ // Shows the window and returns when it is closed.
+ Gtk::Main::run(helloworld);
+
+ return 0;
+}