SHOW:
|
|
- or go back to the newest paste.
| 1 | <xml> | |
| 2 | ||
| 3 | <include name="${HXCPP}/build-tool/BuildCommon.xml"/>
| |
| 4 | <files id="files"> | |
| 5 | <compilerflag value="-Iinclude"/> | |
| 6 | <file name="sqlite.cpp" /> | |
| 7 | <file name="sqlite3.c" /> | |
| 8 | - | <file name="shell.c" /> |
| 8 | + | |
| 9 | ||
| 10 | <set name="mobile" value="1" if="iphone"/> | |
| 11 | <set name="mobile" value="1" if="android"/> | |
| 12 | <set name="mobile" value="1" if="webos"/> | |
| 13 | <set name="mobile" value="1" if="gph"/> | |
| 14 | ||
| 15 | <set name="tool" value="exe" unless="iphone"/> | |
| 16 | <set name="tool" value="static" if="iphone"/> | |
| 17 | <set name="ndll-tool" value="dll" unless="iphone"/> | |
| 18 | <set name="ndll-tool" value="static" if="iphone"/> | |
| 19 | ||
| 20 | <set name="name_extra" value=".iphoneos" if="iphoneos"/> | |
| 21 | <set name="name_extra" value=".iphonesim" if="iphonesim"/> | |
| 22 | <set name="name_prefix" value="lib" if="iphone" /> | |
| 23 | <target id="NDLL" output="${name_prefix}sqlite${name_extra}" tool="linker" toolid="${ndll-tool}">
| |
| 24 | <ext value=".ndll" unless="mobile"/> | |
| 25 | <outdir name="../ndll/${BINDIR}" />
| |
| 26 | <files id="files" /> | |
| 27 | <flag value="${LIB_DIR}" />
| |
| 28 | </target> | |
| 29 | <target id="default"> <target id="NDLL" /> </target> | |
| 30 | </xml> | |
| 31 | ||
| 32 | ||
| 33 |