]>
Commit | Line | Data |
---|---|---|
0d5eda9c FM |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
5 | ||
6 | <include file="../../../build/bakefiles/common_samples.bkl"/> | |
7 | ||
8 | <exe id="screenshotgen" template="wx_util" template_append="wx_append"> | |
9 | <if cond="FORMAT=='autoconf'"> | |
516cf181 FM |
10 | <!-- we need this for correct install_name_tool operations on Mac: --> |
11 | <ldflags>$(HEADER_PAD_OPTION)</ldflags> | |
12 | ||
0d5eda9c FM |
13 | <wx-mac-app-bundle/> |
14 | <ldflags>$(SAMPLES_RPATH_FLAG)</ldflags> | |
0d5eda9c FM |
15 | </if> |
16 | ||
17 | <sources> | |
18 | screenshot_app.cpp | |
19 | screenshot_main.cpp | |
20 | guiframe.cpp | |
0d5eda9c FM |
21 | customcombo.cpp |
22 | autocapture.cpp | |
23 | </sources> | |
24 | ||
25 | <headers> | |
26 | screenshot_app.h | |
27 | screenshot_main.h | |
28 | guiframe.h | |
0d5eda9c FM |
29 | customcombo.h |
30 | autocapture.h | |
31 | </headers> | |
32 | ||
33 | <wx-lib>aui</wx-lib> | |
34 | <wx-lib>adv</wx-lib> | |
35 | <wx-lib>richtext</wx-lib> | |
36 | <wx-lib>html</wx-lib> | |
37 | <wx-lib>xml</wx-lib> | |
38 | <wx-lib>core</wx-lib> | |
39 | <wx-lib>base</wx-lib> | |
40 | ||
41 | <win32-res>screenshotgen.rc</win32-res> | |
42 | <install-to>$(BINDIR)</install-to> | |
43 | </exe> | |
44 | ||
d0aff302 FM |
45 | <wx-data id="bitmaps"> |
46 | <dstdir>$(BUILDDIR)/bitmaps</dstdir> | |
47 | <srcdir>$(SRCDIR)/bitmaps</srcdir> | |
48 | <files> | |
49 | wxwin32x32.png | |
50 | bell.png | |
51 | sound.png | |
52 | dropbuth.png | |
53 | dropbutn.png | |
54 | dropbutp.png | |
55 | throbber.gif | |
56 | </files> | |
57 | </wx-data> | |
58 | ||
59 | <wx-data id="xml"> | |
0d5eda9c FM |
60 | <files> |
61 | richtext.xml | |
0d5eda9c FM |
62 | </files> |
63 | </wx-data> | |
64 | ||
65 | </makefile> |