]> git.tdb.fi Git - libs/gui.git/blobdiff - Build
Discard the EventSource abstraction
[libs/gui.git] / Build
diff --git a/Build b/Build
index 890bd3fc62b097ef1fe16dcc05f47091864dfa8e..76b5622f9a41aac9f4dafccb6e3e9b1ff9fdcc05 100644 (file)
--- a/Build
+++ b/Build
@@ -1,12 +1,9 @@
-/* $Id$ */
-
-package "mspgbase"
+package "mspgui"
 {
        version "1.1";
        description "Base graphics and input library";
 
        require "mspcore";
-       require "mspstrings";
        require "sigc++-2.0";
        if "arch!=win32"
        {
@@ -26,14 +23,19 @@ package "mspgbase"
                require "devil";
        };
 
-       feature "libpng" "Include libpng support for loading PNG files (also requires libmspio)";
-       if "with_png"
+       feature "libpng" "Include libpng support for loading PNG files"
+       {
+               default "yes";
+       };
+       if "with_libpng"
        {
                require "libpng";
-               require "mspio";
        };
 
-       feature "opengl" "Include support for OpenGL contexts";
+       feature "opengl" "Include support for OpenGL contexts"
+       {
+               default "yes";
+       };
        if "with_opengl"
        {
                require "opengl";
@@ -48,9 +50,9 @@ package "mspgbase"
                };
        };
 
-       headers "msp/gbase"
+       headers "msp/graphics"
        {
-               source "source/gbase";
+               source "source/graphics";
                install true;
        };
 
@@ -60,9 +62,9 @@ package "mspgbase"
                install true;
        };
 
-       library "mspgbase"
+       library "mspgui"
        {
-               source "source/gbase";
+               source "source/graphics";
                source "source/input";
                install true;
        };