don't build mfc and memcheck samples by default as they don't always compile (#10031)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@56099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-10-05 22:12:04 +00:00
parent ad4cb2a1df
commit 736c79854b
5 changed files with 42 additions and 39 deletions

View File

@@ -4,8 +4,11 @@
<include file="../build/bakefiles/config.bkl"/>
<template id="sub">
<template id="optsub">
<dir>$(id)</dir>
</template>
<template id="sub" template="optsub">
<dependency-of>all</dependency-of>
</template>
@@ -52,7 +55,6 @@
<subproject id="listctrl" template="sub"/>
<subproject id="mdi" template="sub"/>
<subproject id="mediaplayer" template="sub"/>
<subproject id="memcheck" template="sub"/>
<subproject id="menu" template="sub"/>
<subproject id="minifram" template="sub"/>
<subproject id="minimal" template="sub"/>
@@ -90,7 +92,8 @@
<subproject id="vscroll" template="sub"/>
<subproject id="widgets" template="sub"/>
<subproject id="wizard" template="sub"/>
<!-- Put samples most likely to fail at the end -->
<subproject id="mfc" template="sub"/>
<!-- These samples don't always build so don't build them by default -->
<subproject id="mfc" template="optsub"/>
<subproject id="memcheck" template="optsub"/>
</makefile>