Project/Gtk.vala
authorAlan Knowles <alan@roojs.com>
Wed, 19 Nov 2014 08:34:04 +0000 (16:34 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 19 Nov 2014 08:34:04 +0000 (16:34 +0800)
Project/Gtk.vala

index 34007a0..6975262 100644 (file)
@@ -122,6 +122,17 @@ namespace Project {
                public Gee.ArrayList<string> sources; // list of files+dirs (relative to project)
                public string target_bin;
 
+
+               public GtkValaSettings(string path) 
+               {
+                       this.compile_flags = "";
+                       this.target_bin = "";
+                       this.packages = new Gee.ArrayList<string>();
+                       this.sources = new Gee.ArrayList<string>();
+                               
+               }
+
+               
                public GtkValaSettings.from_json(Json.Object el) {