JSDOC/PackerRun.vala
authorAlan Knowles <alan@roojs.com>
Wed, 25 Nov 2015 08:56:59 +0000 (16:56 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 25 Nov 2015 08:56:59 +0000 (16:56 +0800)
JSDOC/PackerRun.vala

index e4e8f17..fc22609 100644 (file)
@@ -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