X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=e38839992f43de2e965e899e34d1527d77e760f2;hb=123ba96c4b4ac1e33ff21fe7bbca9113429c7dbc;hp=612f9be5a84e998326dba0f9ba37dadde3938513;hpb=1fbd1b60d9fffe40febe499315347762da007269;p=libs%2Fgui.git diff --git a/Build b/Build index 612f9be..e388399 100644 --- a/Build +++ b/Build @@ -2,17 +2,53 @@ package "mspgbase" { - description "Mikkosoft Productions graphics base library"; - version "0.0"; + version "0.9"; + description "Base graphics and input library"; + + tar_file "License.txt"; require "mspcore"; + require "mspstrings"; require "sigc++-2.0"; - require "Xlib"; + require "opengl"; + if "arch!=win32" + { + require "xlib"; + build_info + { + library "Xxf86vm"; + }; + }; + if "arch=win32" + { + build_info + { + library "gdi32"; + }; + }; + + feature "devil" "Include DevIL support for loading image files"; + if "with_devil" + { + require "devil"; + }; + + 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"; }; };