-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathBuild.xml
More file actions
29 lines (20 loc) · 776 Bytes
/
Build.xml
File metadata and controls
29 lines (20 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<xml>
<pragma once="true" />
<set name="SQLITE_DIR" value="${HXCPP}/project/thirdparty/sqlite-3.40.1"/>
<files id="hxcpp_sqlite" dir="${this_dir}" >
<depend files="hxcpp-depends"/>
<depend name="${this_dir}/Build.xml" dateOnly="true" />
<cache value="true" asLibrary="true" />
<file name="Sqlite.cpp"/>
<section unless="HXCPP_NO_VENDORED" >
<compilerflag value="-I${SQLITE_DIR}" unless="HXCPP_NO_VENDORED" />
<depend name="${SQLITE_DIR}/sqlite3.h" />
<file name="${SQLITE_DIR}/sqlite3.c" tags="" />
</section>
</files>
<target id="haxe">
<files id="hxcpp_sqlite"/>
<lib name="-lsqlite3" if="HXCPP_NO_VENDORED" unless="static_link" />
<lib name="-lpthread" if="linux" unless="static_link" />
</target>
</xml>