]>
Commit | Line | Data |
---|---|---|
e91a9dfc | 1 | # -*- python -*- |
5454a927 | 2 | import sys |
e91a9dfc RD |
3 | |
4 | MODULE = 'oglc' | |
5 | SWIGFILES = ['ogl.i', 'oglbasic.i', 'oglshapes.i', 'oglshapes2.i', 'oglcanvas.i'] | |
6 | SOURCES = ['oglhelpers.cpp'] | |
7 | ||
8 | ||
9 | OTHERCFLAGS = '-I$(WXWIN)/utils/ogl/src' | |
5454a927 RD |
10 | |
11 | if sys.platform == 'win32': | |
12 | OTHERLIBS = '$(WXWIN)/lib/ogl$(LIBEXT).lib' | |
13 | else: | |
14 | OTHERLIBS = '-logl' | |
e91a9dfc RD |
15 | |
16 | #OTHERSWIGFLAGS = '-stat' | |
17 | SWIGDEPS = '_ogldefs.i' | |
18 | OTHERDEPS = 'oglhelpers.h $(WXPSRCDIR)/helpers.h' | |
19 | ||
20 | ||
21 | # There are no platform differences so we don't need separate code directories | |
22 | GENCODEDIR='.' |