summaryrefslogtreecommitdiff
path: root/src/site/xdoc/antdocs/SystemLibrarySet.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/site/xdoc/antdocs/SystemLibrarySet.xml')
-rw-r--r--src/site/xdoc/antdocs/SystemLibrarySet.xml116
1 files changed, 116 insertions, 0 deletions
diff --git a/src/site/xdoc/antdocs/SystemLibrarySet.xml b/src/site/xdoc/antdocs/SystemLibrarySet.xml
new file mode 100644
index 0000000..0a9b566
--- /dev/null
+++ b/src/site/xdoc/antdocs/SystemLibrarySet.xml
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+Licensed to the Ant-Contrib Project under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The Ant-Contrib Project licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+ -->
+<document xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:taskdocs="http://ant-contrib.sf.net/taskdocs">
+<properties>
+<title>syslibset</title>
+</properties>
+<body>
+<section name="syslibset">
+<subsection name="Description">A set of system library names. Timestamp or location of system libraries are
+ not considered in dependency analysis.
+
+ Libraries can also be added to a link by specifying them in a fileset.
+
+ For most Unix-like compilers, syslibset will result in a series of -l and -L
+ linker arguments. For Windows compilers, the library names will be used to
+ locate the appropriate library files which will be added to the linkers
+ input file list as if they had been specified in a fileset.</subsection>
+<subsection name="parameters">
+<table>
+<tr>
+<td>
+<b>Attribute</b>
+</td>
+<td>
+<b>Description</b>
+</td>
+<td>
+<b>Type</b>
+</td>
+</tr>
+<tr>
+<td>casesensitive</td>
+<td>Sets case sensitivity of the file system. If not set, will default to
+ the linker's case sensitivity.</td>
+<td>boolean</td>
+</tr>
+<tr>
+<td>dataset</td>
+<td>Sets the dataset. Used on OS390 if the libs are in a dataset.</td>
+<td>String</td>
+</tr>
+<tr>
+<td>description</td>
+<td></td>
+<td>String</td>
+</tr>
+<tr>
+<td>dir</td>
+<td>Library directory.</td>
+<td>File</td>
+</tr>
+<tr>
+<td>if</td>
+<td>Sets the property name for the 'if' condition.
+
+ The library set will be ignored unless the property is defined.
+
+ The value of the property is insignificant, but values that would imply
+ misinterpretation ("false", "no") will throw an exception when
+ evaluated.</td>
+<td>String</td>
+</tr>
+<tr>
+<td>libs</td>
+<td>Comma-separated list of library names without leading prefixes, such as
+ "lib", or extensions, such as ".so" or ".a".</td>
+<td>
+<a href="../apidocs/net/sf/antcontrib/cpptasks/CUtil/StringArrayBuilder.html">StringArrayBuilder</a>
+</td>
+</tr>
+<tr>
+<td>refid</td>
+<td></td>
+<td>Reference</td>
+</tr>
+<tr>
+<td>type</td>
+<td>Sets the preferred library type. Supported values "shared", "static", and
+ "framework". "framework" is equivalent to "shared" on non-Darwin platforms.</td>
+<td>
+<a href="../apidocs/net/sf/antcontrib/cpptasks/types/LibraryTypeEnum.html">LibraryTypeEnum</a>
+</td>
+</tr>
+<tr>
+<td>unless</td>
+<td>Set the property name for the 'unless' condition.
+
+ If named property is set, the library set will be ignored.
+
+ The value of the property is insignificant, but values that would imply
+ misinterpretation ("false", "no") of the behavior will throw an
+ exception when evaluated.</td>
+<td>String</td>
+</tr>
+</table>
+</subsection>
+</section>
+</body>
+</document>