]>
Commit | Line | Data |
---|---|---|
ddf98968 | 1 | <?xml version="1.0" ?> |
cb9548d9 | 2 | |
ddf98968 | 3 | <makefile> |
99713fe3 | 4 | |
ddf98968 VS |
5 | <if cond="FORMAT=='autoconf'"> |
6 | <option name="wxUSE_REGEX"/> | |
a1bf307a RL |
7 | <set var="LIB_REGEX"> |
8 | <if cond="wxUSE_REGEX=='builtin'"> | |
9 | wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) | |
10 | </if> | |
11 | </set> | |
ddf98968 VS |
12 | </if> |
13 | <if cond="FORMAT!='autoconf'"> | |
d628323f VS |
14 | <set var="wxUSE_REGEX"> |
15 | <!-- NB: regex lib doesn't compile on WinCE --> | |
16 | <if cond="FORMAT=='msevc4prj'">no</if> | |
17 | <if cond="FORMAT!='msevc4prj'">builtin</if> | |
18 | </set> | |
a1bf307a RL |
19 | <set var="LIB_REGEX"> |
20 | <if cond="wxUSE_REGEX=='builtin'"> | |
9c2d002b | 21 | wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(HOST_SUFFIX) |
a1bf307a RL |
22 | </if> |
23 | </set> | |
ddf98968 | 24 | </if> |
332cc656 | 25 | <set var="INC_REGEX"> |
580ac8cb | 26 | <if cond="wxUSE_REGEX=='builtin'">$(TOP_SRCDIR)src/regex</if> |
332cc656 | 27 | </set> |
ddf98968 | 28 | |
cb9548d9 | 29 | <lib id="wxregex" template="msvc_setup_h,3rdparty_lib" |
332cc656 | 30 | cond="wxUSE_REGEX=='builtin' and BUILDING_LIB=='1'"> |
a1bf307a RL |
31 | <libname cond="FORMAT=='autoconf'"> |
32 | $(id)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) | |
33 | </libname> | |
34 | <libname cond="FORMAT!='autoconf'"> | |
9c2d002b | 35 | $(id)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(HOST_SUFFIX) |
a1bf307a | 36 | </libname> |
5eb35120 VS |
37 | <include cond="FORMAT!='autoconf'">$(TOP_SRCDIR)include</include> |
38 | <include cond="FORMAT!='autoconf'">$(SETUPHDIR)</include> | |
a92d711e | 39 | <define>__WX$(TOOLKIT)__</define> |
99713fe3 | 40 | <define>$(WXUNIV_DEFINE)</define> |
1c29c1fe | 41 | <define>$(UNICODE_DEFINE)</define> |
ddf98968 | 42 | <dirname>$(LIBDIRNAME)</dirname> |
e3f9e20c | 43 | <cflags-borland>-w-8008 -w-8012 -w-8057 -w-8064 -w-8066 -w-8070</cflags-borland> |
12f003ed | 44 | <cflags-dmars>-w12</cflags-dmars> |
ddf98968 VS |
45 | <sources> |
46 | src/regex/regcomp.c | |
47 | src/regex/regexec.c | |
48 | src/regex/regerror.c | |
49 | src/regex/regfree.c | |
50 | </sources> | |
51 | </lib> | |
52 | ||
53 | </makefile> |