]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/opengl.bkl
update after wx/mac/setup.h rename to wx/osx/setup.h; also order files alphabetically
[wxWidgets.git] / build / bakefiles / opengl.bkl
CommitLineData
957130ca
VS
1<?xml version="1.0" ?>
2<!-- $Id$ -->
3
4<makefile>
5
6 <!-- ================================================================= -->
7 <!-- OpenGL canvas library -->
8 <!-- ================================================================= -->
9
34b08d2c
VS
10 <set var="WXLIBGLDEP_CORE">
11 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('core')))</if>
12 </set>
13 <set var="WXLIBGLDEP_BASE">
14 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('base')))</if>
15 </set>
16
957130ca
VS
17 <dll id="gldll" template="wx_dll"
18 cond="SHARED=='1' and USE_GUI=='1' and USE_OPENGL=='1'">
19 <define>WXUSINGDLL</define>
20 <define>WXMAKINGDLL_GL</define>
21 <sources>$(OPENGL_SRC)</sources>
390c0cfb 22 <msvc-headers>$(OPENGL_HDR)</msvc-headers>
496d012a
VS
23
24 <!-- link against base and core libs in multilib build: -->
34b08d2c
VS
25 <sys-lib>$(WXLIBGLDEP_CORE)</sys-lib>
26 <sys-lib>$(WXLIBGLDEP_BASE)</sys-lib>
7b5dfe6c
VS
27 <depends>basedll</depends>
28 <depends>coredll</depends>
496d012a
VS
29 <!-- link against the wxWin library in monolithic build: -->
30 <sys-lib>$(WXLIB_MONO)</sys-lib>
957130ca 31
22cef566 32 <ldlibs>$(EXTRALIBS_OPENGL)</ldlibs>
957130ca
VS
33 </dll>
34
35 <lib id="gllib" template="wx_lib"
36 cond="SHARED=='0' and USE_GUI=='1' and USE_OPENGL=='1'">
37 <sources>$(OPENGL_SRC)</sources>
390c0cfb 38 <msvc-headers>$(OPENGL_HDR)</msvc-headers>
957130ca
VS
39 </lib>
40
7dd1ae11
VS
41 <wxshortcut id="wxgl" cond="USE_GUI=='1' and USE_OPENGL=='1'"/>
42
957130ca 43</makefile>