]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/common_samples.bkl
added renderer.h/.cpp
[wxWidgets.git] / build / bakefiles / common_samples.bkl
CommitLineData
ddf98968 1<?xml version="1.0" ?>
52de10ef
VS
2<!-- $Id$ -->
3
ddf98968
VS
4<makefile>
5
ddf98968 6 <include file="common.bkl"/>
52de10ef 7 <set var="file_common_samples_included">1</set>
ddf98968
VS
8
9 <!-- =============================================================== -->
10 <!-- Template for wxWindows samples: -->
11 <!-- =============================================================== -->
12
13 <if cond="FORMAT=='autoconf'">
14 <set var="MACOSX_RESOURCES">
15 <if cond="TOOLKIT=='MAC'">
71258947 16 Carbon.r $(LIBDIRNAME)/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r
ddf98968
VS
17 </if>
18 </set>
19 </if>
cdc0282e
VS
20
21 <set var="DLLFLAG">
22 <if cond="SHARED=='1'">WXUSINGDLL</if>
23 </set>
ddf98968 24
4574209d 25 <template id="wx_sample_b" template="wx">
ddf98968 26 <include>$(SRCDIR)</include>
ddf98968 27 <ldflags>$(SAMPLES_RPATH_FLAG)</ldflags>
cdc0282e 28 <define>$(DLLFLAG)</define>
4574209d
VS
29 </template>
30
31 <template id="wx_sample" template="wx_sample_b">
cdc0282e 32 <app-type>gui</app-type>
ddf98968
VS
33 <mac-res cond="FORMAT=='autoconf'">$(MACOSX_RESOURCES)</mac-res>
34 </template>
4574209d
VS
35
36 <template id="wx_sample_console" template="wx_sample_b">
37 <app-type>console</app-type>
38 </template>
ddf98968
VS
39
40
41 <!-- =============================================================== -->
42 <!-- Support for samples data files: -->
43 <!-- =============================================================== -->
44
45 <define-rule name="wx-data" extends="copy-files">
46 <template>
47 <dependency-of>all</dependency-of>
48 <dstdir>$(BUILDDIR)</dstdir>
49 <srcdir>$(SRCDIR)</srcdir>
50 </template>
52de10ef
VS
51
52 <!--
53 VS - FIXME:
54 Don't clean the files because it would wipe out sources files if
55 BUILDDIR==SRCDIR. This is same behaviour as in the old build system,
56 but it would be better to delete the files during "make clean" if
57 BUILDDIR!=SRCDIR.
58
ddf98968
VS
59 <define-tag name="files">
60 <clean-files>
61 $(' '.join(['$(BUILDDIR)$(DIRSEP)%s'%x for x in value.split()]))
62 </clean-files>
63 </define-tag>
52de10ef 64 -->
ddf98968
VS
65 </define-rule>
66
67</makefile>