From 37d98e5fa56706321ff4ee788e9274204781f06e Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 26 Nov 2015 11:30:17 +0800 Subject: [PATCH] JSDOC/PackerRun.vala --- JSDOC/PackerRun.vala | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/JSDOC/PackerRun.vala b/JSDOC/PackerRun.vala index ac06263..9adc607 100644 --- a/JSDOC/PackerRun.vala +++ b/JSDOC/PackerRun.vala @@ -15,8 +15,9 @@ namespace JSDOC public static string opt_debug_target = ""; public static string opt_tmpdir = ""; - + [CCode (array_length = false, array_null_terminated = true)] private static string[]? opt_files = null; + [CCode (array_length = false, array_null_terminated = true)] private static string[]? opt_files_from = null; public static bool opt_debug = false; @@ -25,11 +26,11 @@ namespace JSDOC const OptionEntry[] options = { { "jsfile", 'f', 0, OptionArg.FILENAME_ARRAY, ref opt_files ,"add a file to compile", null }, - // { "target", 't', 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null }, - // { "debug-target", 'T', 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null }, - // { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, + { "target", 't', 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null }, + { "debug-target", 'T', 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null }, + { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, -// { "index-files", 'i', 0, OptionArg.FILENAME_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null }, + { "index-files", 'i', 0, OptionArg.FILENAME_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 -- 2.39.2