X-Git-Url: http://git.roojs.org/?p=app.Builder.js;a=blobdiff_plain;f=src%2FApplication.vala;h=2892ae309ec1533cf88c46c9cdf31cb5a6c2a921;hp=a3750e4f21284bef672a75d70d4eff493a202b3d;hb=HEAD;hpb=11a47a77bde99b9e07edb197b92c30e92136fcaf diff --git a/src/Application.vala b/src/Application.vala index a3750e4f2..2892ae309 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -56,14 +56,28 @@ { "target", 0, 0, OptionArg.STRING, ref opt_compile_target, "Target to build", null }, { "skip-file", 0, 0, OptionArg.STRING, ref opt_compile_skip ,"For test compiles do not add this (usually used in conjunction with add-file ", null }, { "add-file", 0, 0, OptionArg.STRING, ref opt_compile_add, "Add this file to compile list", null }, + { "output", 0, 0, OptionArg.STRING, ref opt_compile_output, "output binary file path", null }, { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null }, + + // 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 }, + + { null } }; public static string opt_compile_project; public static string opt_compile_target; public static string opt_compile_skip; public static string opt_compile_add; + public static string opt_compile_output; + 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; @@ -110,7 +124,7 @@ stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", args[0], opt_context.get_help(true,null)); GLib.Process.exit(Posix.EXIT_FAILURE); - return; + } } @@ -144,11 +158,9 @@ return dirname; } - + } - - - +