From: Alan Knowles Date: Wed, 25 Nov 2015 08:56:59 +0000 (+0800) Subject: JSDOC/PackerRun.vala X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=365b219a9816206d2ae2640f8367306ddcae1a83 JSDOC/PackerRun.vala --- diff --git a/JSDOC/PackerRun.vala b/JSDOC/PackerRun.vala index e4e8f17..fc22609 100644 --- a/JSDOC/PackerRun.vala +++ b/JSDOC/PackerRun.vala @@ -12,9 +12,9 @@ namespace JSDOC const OptionEntry[] options = { - { "project", 0, 0, OptionArg.STRING, ref opt_compile_project, "Compile a project", null }, - { "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 }, + { "target", 0, 0, OptionArg.STRING, ref opt_target "Target File to write (eg. roojs.js)", null }, + { "tmpdir", 0, 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, + { "file", 0, 0, OptionArg.STRING, ref opt_compile_files ,"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 }, @@ -22,19 +22,12 @@ namespace JSDOC }; 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 bool opt_debug = false; - - public static string _self; + public static string[] opt_compile_files; + public PackerRun (string[] args) { - _self = FileUtils.read_link("/proc/self/exe"); - GLib.debug("SELF = %s", _self); - Object( application_id: "org.roojs.jsdoc.packerrun", flags: ApplicationFlags.FLAGS_NONE