X-Git-Url: http://git.roojs.org/?p=app.Builder.js;a=blobdiff_plain;f=src%2FApplication.vala;h=2892ae309ec1533cf88c46c9cdf31cb5a6c2a921;hp=2642fa642c370cf90f7c1ddf4a030e9558fe91e3;hb=HEAD;hpb=e3e914c41230ff5ec8b05e447513b63dec5e22f8 diff --git a/src/Application.vala b/src/Application.vala index 2642fa642..2892ae309 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -60,8 +60,8 @@ { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null }, // some testing code. - { "list-projects", 0, 0, OptionArg.NONE, ref opt_debug, "List Projects", null }, - + { "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 }, @@ -76,6 +76,8 @@ public static string opt_bjs_compile; 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;