don't build flash and mfc samples with non-MSVC compilers (closes #10622)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59699 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-03-21 15:39:15 +00:00
parent ea46839980
commit c00ee75726
4 changed files with 13 additions and 48 deletions

View File

@@ -84,9 +84,18 @@
<subproject id="widgets" template="sub"/>
<subproject id="wizard" template="sub"/>
<subproject id="wrapsizer" template="sub"/>
<!-- These samples don't always build so don't build them by default -->
<subproject id="flash" template="optsub"/>
<subproject id="mfc" template="optsub"/>
<!--
These samples don't always build (they need non-default wxWidgets
configuration or some 3rd party library being installed) so don't build
them by default by using "optsub" template instead of "sub" one and
some of them also requite MSVC compiler so don't use them with the
other ones.
-->
<if cond="FORMAT[:3] == 'msv'">
<subproject id="flash" template="optsub"/>
<subproject id="mfc" template="optsub"/>
</if>
<subproject id="memcheck" template="optsub"/>
</makefile>