]> git.tdb.fi Git - libs/gui.git/blob - Build
Win32 compatibility (for most things)
[libs/gui.git] / Build
1 /* $Id$ */
2
3 package "mspgbase"
4 {
5         description "Mikkosoft Productions graphics base library";
6         version "0.0";
7
8         require "mspcore";
9         require "sigc++-2.0";
10         // The OpenGL stuff is hackish, but only way to do it right now
11         if "arch!=win32"
12         {
13                 require "xlib";
14                 require "opengl";
15                 build_info
16                 {
17                         library "Xxf86vm";
18                 };
19         };
20         if "arch=win32"
21         {
22                 build_info
23                 {
24                         library "opengl32";
25                         library "gdi32";
26                 };
27         };
28
29         library "mspgbase"
30         {
31                 source "source";
32                 install true;
33                 install_headers "msp/gbase";
34         };
35 };