JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index b3eb912..15f56ef 100644 (file)
@@ -18,11 +18,11 @@ namespace JSDOC
        {
                const OptionEntry[] options = {
                
-                       
+                       { "file", 0, 0, OptionArg.STRING_ARRAY, ref opt_files ,"add a file to compile", null },
                        { "target", 0, 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null },
                        { "debug-target", 0, 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null },
                        { "tmpdir", 0, 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null },
-                       { "file", 0, 0, OptionArg.STRING_ARRAY, ref opt_files ,"add a file to compile", null },
+
                        { "index-files", 0, 0, OptionArg.STRING_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null },             
  
                        { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
@@ -35,8 +35,8 @@ namespace JSDOC
                public static string opt_tmpdir = "";
                
                
-               public static string[] opt_files = {};
-               public static string opt_files_from = "";
+               public static string[] opt_files;
+               public static string[] opt_files_from = "";
                public static bool opt_debug = false;