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.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/FindGTK2/gtkmm/main.cpp b/Tests/FindGTK2/gtkmm/main.cpp
new file mode 100644
index 0000000..5ff64d1
--- /dev/null
+++ b/Tests/FindGTK2/gtkmm/main.cpp
@@ -0,0 +1,13 @@
+#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;
+}