wxwidgets/build/bakefiles/opengl.bkl
Václav Slavík 496d012a89 fixes for monolib build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22036 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-07-17 08:55:11 +00:00

32 lines
1 KiB
XML

<?xml version="1.0" ?>
<!-- $Id$ -->
<makefile>
<!-- ================================================================= -->
<!-- OpenGL canvas library -->
<!-- ================================================================= -->
<dll id="gldll" template="wx_dll"
cond="SHARED=='1' and USE_GUI=='1' and USE_OPENGL=='1'">
<define>WXUSINGDLL</define>
<define>WXMAKINGDLL_GL</define>
<sources>$(OPENGL_SRC)</sources>
<!-- link against base and core libs in multilib build: -->
<library>coredll</library>
<library>basedll</library>
<!-- link against the wxWin library in monolithic build: -->
<sys-lib>$(WXLIB_MONO)</sys-lib>
<if cond="FORMAT=='autoconf'">
<ldflags>$(OPENGL_LIBS)</ldflags>
</if>
</dll>
<lib id="gllib" template="wx_lib"
cond="SHARED=='0' and USE_GUI=='1' and USE_OPENGL=='1'">
<sources>$(OPENGL_SRC)</sources>
</lib>
</makefile>