]> git.tdb.fi Git - libs/gl.git/blob - Build
Windows compatibility:
[libs/gl.git] / Build
1 /* $Id$ */
2
3 package "mspgl"
4 {
5         description "C++ wrappers for OpenGL";
6         version "0.1";
7
8         // A bit of a hack until I get something better in builder
9         if "arch!=win32"
10         {
11                 require "opengl";
12         };
13         if "arch=win32"
14         {
15                 build_info
16                 {
17                         library "opengl32";
18                 };
19         };
20         require "mspdatafile";
21         require "devil";
22         build_info
23         {
24                 library "ILU";
25         };
26
27         library "mspgl"
28         {
29                 source "source";
30                 install true;
31                 install_headers "msp/gl";
32         };
33 };