JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index 914d29a..1f781a9 100644 (file)
@@ -7,22 +7,33 @@
 namespace JSDOC
 {
 
-       class PackerRun : Gtk.Application  
+       class PackerRun : Application  
        {
                const OptionEntry[] options = {
                
                        
-                       { "target", 0, 0, OptionArg.STRING, ref opt_target "Target File to write (eg. roojs.js)", 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 },
+                       { "file", 0, 0, OptionArg.STRING_ARRAY, ref opt_files ,"add a file to compile", null },
+                       { "files-from", 0, 0, OptionArg.STRING, ref opt_files_from ,"a text file listing files to compile", null },              
                        { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
                        { null }
                };
-               public static string opt_compile_project;
-               public static string opt_compile_target;
-               public static string[] opt_compile_files;
+               public static string opt_target;
+               public static string opt_tmpdir;
+               
+               
+               public static string[] opt_files;
+               public static string opt_files_from;
+               public static bool opt_debug;
+               
+               // --------------- <<<<<<< <MAIN HERE....
+               public static int main(string[] args) 
+               {
+                       new PackerRun(args);
+                       return 0;
+               }
 
        
                public PackerRun (string[] args)