JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index 970eb84..de70596 100644 (file)
@@ -23,9 +23,11 @@ namespace JSDOC
                        { "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 },
-                       { "files-from", 0, 0, OptionArg.STRING, ref opt_files_from ,"a text file listing files 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 },
+                       // fixme -- keepwhite.. cleanup 
+                       
                        { null }
                };
                public static string opt_target = "";
@@ -65,16 +67,22 @@ namespace JSDOC
                                 
                        }
                        // what's required...
-                       
+                       if (opt_debug) {
+                               GLib.Log.set_handler(null, 
+                                       GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING, 
+                                       (dom, lvl, msg) => {
+                                       print("%s: %s\n", dom, msg);
+                               });
+                       }
                        
                        // now run the Packer...
                        var p = new Packer(opt_target, opt_debug_target);
                        if (opt_files.length > 0) {
+                               GLib.debug("Adding Files");
                                p.loadFiles(opt_files);
                        }
-                       
-               }       
-               
+                       p.pack();
+               }        
                
        }