1<?xml version="1.0" ?>
2
3<makefile>
4
5    <include file="../../../build/bakefiles/common_samples.bkl"/>
6
7    <if cond="OUT_OF_TREE_MAKEFILES=='1'">
8        <set var="USE_OPENGL">1</set>
9    </if>
10
11    <exe id="pyramid" template="wx_sample" template_append="wx_append" cond="USE_OPENGL=='1'">
12        <sources>
13            pyramid.cpp
14            oglstuff.cpp
15            mathstuff.cpp
16            oglpfuncs.cpp
17        </sources>
18        <headers>
19            pyramid.h
20            oglstuff.h
21            mathstuff.h
22            oglpfuncs.h
23        </headers>
24        <wx-lib>gl</wx-lib>
25        <wx-lib>core</wx-lib>
26        <wx-lib>base</wx-lib>
27    </exe>
28
29</makefile>
30