X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=f0abdf8e2f4c1c7a4e61ec2a3034cb0eae2bc3a4;hb=bdd9a8e26efad3ba349e4ffd58171cfee3cacfb0;hp=06505b582a2300153992e026f6d2aba43a9f95da;hpb=a5797c9babd17673285b3b15c7572c2d8fe1595c;p=libs%2Fgl.git diff --git a/Build b/Build index 06505b58..f0abdf8e 100644 --- a/Build +++ b/Build @@ -2,16 +2,47 @@ package "mspgl" { - description "C++ wrappers for OpenGL"; - version "0.1"; + version "1.1"; + description "Lightweight C++/OpenGL graphics engine"; require "mspdatafile"; + require "mspgbase"; require "opengl"; + headers "msp/gl" + { + source "source"; + install true; + }; + library "mspgl" { source "source"; install true; - install_headers "msp/gl"; + }; + + program "mesh2c" + { + source "mesh2c.cpp"; + build_info + { + library "mspgl"; + }; + }; + + program "viewer" + { + source "viewer.cpp"; + require "mspfs"; + build_info + { + library "mspgl"; + }; + }; + + tarball "@src" + { + source "License.txt"; + source "Changelog.txt"; }; };