X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=a75473b6a210c20a9c9a150f9076f76cf88e059d;hb=39ec5cd588bf8b49717033d841be689df68537a3;hp=19c48cb3844b50c40b81d249e670f04a04aa05a0;hpb=61eeb96535d1575ca0cf698d833c0ddfc7ae0f50;p=libs%2Fgui.git diff --git a/Build b/Build index 19c48cb..a75473b 100644 --- a/Build +++ b/Build @@ -2,16 +2,18 @@ package "mspgbase" { - description "Mikkosoft Productions graphics base library"; - version "0.0"; + version "1.0"; + description "Base graphics and input library"; + + tar_file "License.txt"; + tar_file "Changelog.txt"; require "mspcore"; + require "mspstrings"; require "sigc++-2.0"; - // The OpenGL stuff is hackish, but only way to do it right now if "arch!=win32" { require "xlib"; - require "opengl"; build_info { library "Xxf86vm"; @@ -21,15 +23,38 @@ package "mspgbase" { build_info { - library "opengl32"; library "gdi32"; }; }; + feature "devil" "Include DevIL support for loading image files"; + if "with_devil" + { + require "devil"; + }; + + feature "opengl" "Include support for OpenGL contexts"; + if "with_opengl" + { + require "opengl"; + }; + + headers "gbase" + { + source "source/gbase"; + install_headers "msp/gbase"; + }; + + headers "input" + { + source "source/input"; + install_headers "msp/input"; + }; + library "mspgbase" { - source "source"; + source "source/gbase"; + source "source/input"; install true; - install_headers "msp/gbase"; }; };