X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=Build;h=7e98f4c724343e4cad002181e5f4ffcb4ae02976;hp=cc0de245bd23b79f129703c769d0b6cd5a16ae0d;hb=e77c027ce8efb5dafd93bdd0f77504218a955665;hpb=d1800d7ea80290f4913d0203241cef1409656522 diff --git a/Build b/Build index cc0de245..7e98f4c7 100644 --- a/Build +++ b/Build @@ -2,37 +2,28 @@ package "mspgl" { - description "C++ wrappers for OpenGL"; - version "0.1"; + version "1.1"; + description "Lightweight C++/OpenGL graphics engine"; - feature "devil" "Include DevIL support for loading image files"; - - // A bit of a hack until I get something better in builder - if "arch!=win32" - { - require "opengl"; - }; - if "arch=win32" - { - build_info - { - library "opengl32"; - }; - }; require "mspdatafile"; - if "with_devil" + require "mspgbase"; + require "opengl"; + + headers "msp/gl" { - require "devil"; - build_info - { - library "ILU"; - }; + source "source"; + install true; }; library "mspgl" { source "source"; install true; - install_headers "msp/gl"; + }; + + tarball "@src" + { + source "License.txt"; + source "Changelog.txt"; }; };