]>
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"> | |
e3f9e20c | 13 | <if cond="wxUSE_REGEX=='builtin'">wxregex$(WXUNICODEFLAG)$(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'"> |
e3f9e20c | 21 | <libname>$(id)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(HOST_SUFFIX)</libname> |
5eb35120 VS |
22 | <include cond="FORMAT!='autoconf'">$(TOP_SRCDIR)include</include> |
23 | <include cond="FORMAT!='autoconf'">$(SETUPHDIR)</include> | |
1c29c1fe | 24 | <define>$(UNICODE_DEFINE)</define> |
ddf98968 | 25 | <dirname>$(LIBDIRNAME)</dirname> |
e3f9e20c | 26 | <cflags-borland>-w-8008 -w-8012 -w-8057 -w-8064 -w-8066 -w-8070</cflags-borland> |
ddf98968 VS |
27 | <sources> |
28 | src/regex/regcomp.c | |
29 | src/regex/regexec.c | |
30 | src/regex/regerror.c | |
31 | src/regex/regfree.c | |
32 | </sources> | |
33 | </lib> | |
34 | ||
35 | </makefile> |