aboutsummaryrefslogtreecommitdiff
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
Initial commit
-rw-r--r--.gitignore6
-rw-r--r--project.conf8
-rw-r--r--src/main.cpp13
3 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0dee329
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+# Compiled sibs files
+sibs-build/
+compile_commands.json
+tests/sibs-build/
+tests/compile_commands.json
+.vscode/
diff --git a/project.conf b/project.conf
new file mode 100644
index 0000000..03785d9
--- /dev/null
+++ b/project.conf
@@ -0,0 +1,8 @@
+[package]
+name = "online_persona_gtk"
+type = "executable"
+version = "0.1.0"
+platforms = ["any"]
+
+[dependencies]
+gtkmm-3.0 = "3"
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);
+}