]>
Commit | Line | Data |
---|---|---|
ddf98968 VS |
1 | <?xml version="1.0" ?> |
2 | <makefile> | |
3 | ||
4 | <if cond="FORMAT=='autoconf'"> | |
5 | <option name="wxUSE_REGEX"/> | |
6 | </if> | |
7 | <if cond="FORMAT!='autoconf'"> | |
8 | <set var="wxUSE_REGEX">builtin</set> | |
9 | </if> | |
10 | <set var="LIB_REGEX"> | |
11 | <if cond="wxUSE_REGEX=='builtin'">wxregex</if> | |
12 | </set> | |
13 | ||
14 | <lib id="wxregex" cond="wxUSE_REGEX=='builtin' and BUILDING_LIB=='1'"> | |
15 | <dirname>$(LIBDIRNAME)</dirname> | |
16 | <sources> | |
17 | src/regex/regcomp.c | |
18 | src/regex/regexec.c | |
19 | src/regex/regerror.c | |
20 | src/regex/regfree.c | |
21 | </sources> | |
22 | </lib> | |
23 | ||
24 | </makefile> |