Lines Matching refs:txt
110 var txt;
111 txt = "Usage:\n";
112 txt += " cscript " + WScript.ScriptName + " <options>\n";
113 txt += " cscript " + WScript.ScriptName + " help\n\n";
114 txt += "Options can be specified in the form <option>=<value>, where the value is\n";
115 txt += "either 'yes' or 'no', if not stated otherwise.\n\n";
116 txt += "\nXML processor options, default value given in parentheses:\n\n";
117 txt += " trio: Enable TRIO string manipulator (" + (withTrio? "yes" : "no") + ")\n";
118 txt += " threads: Enable thread safety [no|ctls|native|posix] (" + (withThreads) + ") \n";
119 txt += " ftp: Enable FTP client (" + (withFtp? "yes" : "no") + ")\n";
120 txt += " http: Enable HTTP client (" + (withHttp? "yes" : "no") + ")\n";
121 txt += " html: Enable HTML processor (" + (withHtml? "yes" : "no") + ")\n";
122 txt += " c14n: Enable C14N support (" + (withC14n? "yes" : "no") + ")\n";
123 txt += " catalog: Enable catalog support (" + (withCatalog? "yes" : "no") + ")\n";
124 txt += " docb: Enable DocBook support (" + (withDocb? "yes" : "no") + ")\n";
125 txt += " xpath: Enable XPath support (" + (withXpath? "yes" : "no") + ")\n";
126 txt += " xptr: Enable XPointer support (" + (withXptr? "yes" : "no") + ")\n";
127 txt += " xinclude: Enable XInclude support (" + (withXinclude? "yes" : "no") + ")\n";
128 txt += " iconv: Enable iconv support (" + (withIconv? "yes" : "no") + ")\n";
129 txt += " icu: Enable icu support (" + (withIcu? "yes" : "no") + ")\n";
130 txt += " iso8859x: Enable ISO8859X support (" + (withIso8859x? "yes" : "no") + ")\n";
131 txt += " zlib: Enable zlib support (" + (withZlib? "yes" : "no") + ")\n";
132 txt += " lzma: Enable lzma support (" + (withLzma? "yes" : "no") + ")\n";
133 txt += " xml_debug: Enable XML debbugging module (" + (withDebug? "yes" : "no") + ")\n";
134 txt += " mem_debug: Enable memory debugger (" + (withMemDebug? "yes" : "no") + ")\n";
135 txt += " run_debug: Enable memory debugger (" + (withRunDebug? "yes" : "no") + ")\n";
136 txt += " regexps: Enable regular expressions (" + (withRegExps? "yes" : "no") + ")\n";
137 txt += " modules: Enable module support (" + (withModules? "yes" : "no") + ")\n";
138 txt += " tree: Enable tree api (" + (withTree? "yes" : "no") + ")\n";
139 txt += " reader: Enable xmlReader api (" + (withReader? "yes" : "no") + ")\n";
140 txt += " writer: Enable xmlWriter api (" + (withWriter? "yes" : "no") + ")\n";
141 txt += " walker: Enable xmlDocWalker api (" + (withWalker? "yes" : "no") + ")\n";
142 txt += " pattern: Enable xmlPattern api (" + (withPattern? "yes" : "no") + ")\n";
143 txt += " push: Enable push api (" + (withPush? "yes" : "no") + ")\n";
144 txt += " valid: Enable DTD validation support (" + (withValid? "yes" : "no") + ")\n";
145 txt += " sax1: Enable SAX1 api (" + (withSax1? "yes" : "no") + ")\n";
146 txt += " legacy: Enable Deprecated api's (" + (withLegacy? "yes" : "no") + ")\n";
147 txt += " output: Enable serialization support (" + (withOutput? "yes" : "no") + ")\n";
148 txt += " schemas: Enable XML Schema support (" + (withSchemas? "yes" : "no") + ")\n";
149 txt += " schematron: Enable Schematron support (" + (withSchematron? "yes" : "no") + ")\n";
150 txt += " python: Build Python bindings (" + (withPython? "yes" : "no") + ")\n";
151 txt += "\nWin32 build options, default value given in parentheses:\n\n";
152 txt += " compiler: Compiler to be used [msvc|mingw|bcb] (" + compiler + ")\n";
153 txt += " cruntime: C-runtime compiler option (only msvc) (" + cruntime + ")\n";
154 txt += " dynruntime: Use the dynamic RTL (only bcb) (" + dynruntime + ")\n";
155 txt += " vcmanifest: Embed VC manifest (only msvc) (" + (vcmanifest? "yes" : "no") + ")\n";
156 txt += " debug: Build unoptimised debug executables (" + (buildDebug? "yes" : "no") + ")\n";
157 txt += " static: Link xmllint statically to libxml2 (" + (buildStatic? "yes" : "no") + ")\n";
158 txt += " Note: automatically enabled if cruntime is not /MD or /MDd\n";
159 txt += " prefix: Base directory for the installation (" + buildPrefix + ")\n";
160 txt += " bindir: Directory where xmllint and friends should be installed\n";
161 txt += " (" + buildBinPrefix + ")\n";
162 txt += " incdir: Directory where headers should be installed\n";
163 txt += " (" + buildIncPrefix + ")\n";
164 txt += " libdir: Directory where static and import libraries should be\n";
165 txt += " installed (" + buildLibPrefix + ")\n";
166 txt += " sodir: Directory where shared libraries should be installed\n";
167 txt += " (" + buildSoPrefix + ")\n";
168 txt += " include: Additional search path for the compiler, particularily\n";
169 txt += " where iconv headers can be found (" + buildInclude + ")\n";
170 txt += " lib: Additional search path for the linker, particularily\n";
171 txt += " where iconv library can be found (" + buildLib + ")\n";
172 WScript.Echo(txt);