Regenerate dll samples makefiles using the correct source file name.
[wxWidgets.git] / samples / dll / dll.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <makefile>
5     <include file="../../build/bakefiles/common_samples.bkl"/>
6
7     <dll id="my_dll" template="wx" template_append="wx_append"
8          cond="PLATFORM_WIN32=='1'">
9
10         <define>$(DLLFLAG)</define>
11         <include>$(SRCDIR)</include>
12
13         <sources>my_dll.cpp</sources>
14         <wx-lib>core</wx-lib>
15         <wx-lib>base</wx-lib>
16     </dll>
17
18     <!-- this test only makes sense with statically built wx, otherwise
19          the same copy of wx would be used -->
20     <exe id="wx_exe" template="wx_sample" template_append="wx_append"
21          cond="SHARED=='0' and PLATFORM_WIN32=='1'">
22         <sources>wx_exe.cpp</sources>
23         <wx-lib>core</wx-lib>
24         <wx-lib>base</wx-lib>
25         <library>my_dll</library>
26     </exe>
27
28 </makefile>