Don't define LIB_LEXILLA and LIB_SCINTILLA when USE_STC==0
This avoids link when building the tests in configure-based CI builds using --disable-stc.
This commit is contained in:
parent
7d362c3fca
commit
d509d534dd
2 changed files with 9 additions and 3 deletions
|
|
@ -3,12 +3,16 @@
|
|||
|
||||
<if cond="FORMAT=='autoconf'">
|
||||
<set var="LIB_LEXILLA">
|
||||
wxlexilla$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
||||
<if cond="USE_STC=='1'">
|
||||
wxlexilla$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
||||
</if>
|
||||
</set>
|
||||
</if>
|
||||
<if cond="FORMAT!='autoconf'">
|
||||
<set var="LIB_LEXILLA">
|
||||
wxlexilla$(WXDEBUGFLAG)$(HOST_SUFFIX)
|
||||
<if cond="USE_STC=='1'">
|
||||
wxlexilla$(WXDEBUGFLAG)$(HOST_SUFFIX)
|
||||
</if>
|
||||
</set>
|
||||
</if>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,9 @@
|
|||
|
||||
<if cond="FORMAT=='autoconf'">
|
||||
<set var="LIB_SCINTILLA">
|
||||
wxscintilla$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
||||
<if cond="USE_STC=='1'">
|
||||
wxscintilla$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
||||
</if>
|
||||
</set>
|
||||
</if>
|
||||
<if cond="FORMAT!='autoconf'">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue