]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/wxPython/modules/glcanvas/build.cfg
New wxHtml stuff, including a TagHandler for placing wxPython widgets
[wxWidgets.git] / utils / wxPython / modules / glcanvas / build.cfg
... / ...
CommitLineData
1# -*- python -*-
2import sys
3
4MODULE = 'glcanvasc'
5SWIGFILES = ['glcanvas.i', ]
6
7
8# Special action; for win32 we require you make the glcanvas lib. The
9# makefile will copy it to WXWIN\lib
10# Unix make system isn't so advanced, so we'll go looking for the source
11# file ourselves...
12if sys.platform == 'win32':
13 OTHERLIBS = '$(WXDIR)\lib\glcanvas.lib glu32.lib opengl32.lib'
14 OTHERCFLAGS = '-DWITH_GLCANVAS -I$(WXDIR)\utils\glcanvas\win'
15else:
16 SOURCES = [GENCODEDIR+'/_glcanvas.cpp']
17 print "Warning: Assuming MesaGL libraries. Override OTHERLIBS in build.local\n"\
18 " if you have native GL!"
19 OTHERCFLAGS = '-DWITH_GLCANVAS -I$(WXDIR)\utils\glcanvas\gtk'
20 OTHERLIBS = "-lMesaGL -lMesaGLU"
21 OTHERRULES = """
22$(GENCODEDIR)/_glcanvas.cpp :
23 cp $(WXDIR)/utils/glcanvas/$(GENCODEDIR)/glcanvas.cpp $@
24"""