]>
Commit | Line | Data |
---|---|---|
83c7f6a7 VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | ||
4 | <!-- | |
5 | Presents for building wxWidgets applications. | |
6 | ||
7 | FIXME: docs | |
8 | --> | |
9 | ||
10 | ||
11 | <makefile> | |
12 | ||
13 | <!-- this is just a wrapper that includes the real implementation: --> | |
14 | ||
15 | <set var="__wx_included_impl">0</set> | |
16 | ||
17 | <if cond="FORMAT in ['autoconf','gnu']"> | |
18 | <include file="wx_unix.bkl"/> | |
19 | <set var="__wx_included_impl">1</set> | |
20 | </if> | |
21 | ||
22 | <if cond="FORMAT!='autoconf' and PLATFORM_WIN32=='1'"> | |
23 | <include file="wx_win32.bkl"/> | |
24 | <set var="__wx_included_impl">1</set> | |
25 | </if> | |
26 | ||
27 | <if cond="__wx_included_impl=='0'"> | |
28 | <error>This format is not (yet) supported by wx preset.</error> | |
29 | </if> | |
30 | ||
31 | </makefile> |