From: Alan Knowles Date: Wed, 25 Nov 2015 09:08:00 +0000 (+0800) Subject: JSDOC/PackerRun.vala X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=8f2b840219f246c813412d6bd1ab318de7c3b990 JSDOC/PackerRun.vala --- diff --git a/JSDOC/PackerRun.vala b/JSDOC/PackerRun.vala index b89cad0..e141b2b 100644 --- a/JSDOC/PackerRun.vala +++ b/JSDOC/PackerRun.vala @@ -14,14 +14,16 @@ namespace JSDOC { "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 ,"add a file to compile", null }, - { "files-from", 0, 0, OptionArg.STRING, ref opt_compile_files ,"a text file listing files to compile", null }, + { "file", 0, 0, OptionArg.STRING, 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 }, { "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 }, { null } }; - public static string opt_compile_project; - public static string opt_compile_target; + public static string opt_target; + public static string opt_tmpdir; + + public static string[] opt_compile_files;