]>
Commit | Line | Data |
---|---|---|
ddf98968 | 1 | <?xml version="1.0" ?> |
1ec597c0 | 2 | <!-- $Id$ --> |
cb9548d9 | 3 | |
ddf98968 VS |
4 | <makefile> |
5 | ||
6 | <if cond="FORMAT=='autoconf'"> | |
7 | <option name="wxUSE_REGEX"/> | |
8 | </if> | |
9 | <if cond="FORMAT!='autoconf'"> | |
10 | <set var="wxUSE_REGEX">builtin</set> | |
11 | </if> | |
12 | <set var="LIB_REGEX"> | |
ea66c762 | 13 | <if cond="wxUSE_REGEX=='builtin'">wxregex$(WXDEBUGFLAG)$(HOST_SUFFIX)</if> |
ddf98968 | 14 | </set> |
332cc656 | 15 | <set var="INC_REGEX"> |
580ac8cb | 16 | <if cond="wxUSE_REGEX=='builtin'">$(TOP_SRCDIR)src/regex</if> |
332cc656 | 17 | </set> |
ddf98968 | 18 | |
cb9548d9 | 19 | <lib id="wxregex" template="msvc_setup_h,3rdparty_lib" |
332cc656 | 20 | cond="wxUSE_REGEX=='builtin' and BUILDING_LIB=='1'"> |
5eb35120 VS |
21 | <include cond="FORMAT!='autoconf'">$(TOP_SRCDIR)include</include> |
22 | <include cond="FORMAT!='autoconf'">$(SETUPHDIR)</include> | |
1c29c1fe | 23 | <define>$(UNICODE_DEFINE)</define> |
ddf98968 | 24 | <dirname>$(LIBDIRNAME)</dirname> |
f101c18d | 25 | <cflags-borland>-w-8004 -w-8012 -w-8057 -w-8066</cflags-borland> |
ddf98968 VS |
26 | <sources> |
27 | src/regex/regcomp.c | |
28 | src/regex/regexec.c | |
29 | src/regex/regerror.c | |
30 | src/regex/regfree.c | |
31 | </sources> | |
32 | </lib> | |
33 | ||
34 | </makefile> |