src/Application.vala
authorAlan Knowles <alan@roojs.com>
Mon, 30 May 2016 06:36:03 +0000 (14:36 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 30 May 2016 06:36:03 +0000 (14:36 +0800)
src/Application.vala

index ba26f01..2892ae3 100644 (file)
@@ -61,7 +61,7 @@
             
             // some testing code.
             { "list-projects", 0, 0,  OptionArg.NONE, ref opt_list_projects, "List Projects", null },
-            
+            { "list-files", 0, 0,  OptionArg.NONE, ref  opt_list_files, "List Files (in a project", null},
             { "bjs", 0, 0, OptionArg.STRING, ref opt_bjs_compile, "convert bjs file", null },
             { "bjs-target", 0, 0, OptionArg.STRING, ref opt_bjs_compile_target, "convert bjs file to tareet  : vala / js", null },
             
@@ -77,6 +77,7 @@
         public static string opt_bjs_compile_target;
                public static bool opt_debug = false;
                public static bool opt_list_projects = false;
+               public static bool opt_list_files = false;
                
                public static string _self;