X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=f0abdf8e2f4c1c7a4e61ec2a3034cb0eae2bc3a4;hb=bdd9a8e26efad3ba349e4ffd58171cfee3cacfb0;hp=b83b3c7c12c37f67140ce45ed70e2c13de3ce958;hpb=a361efc05fcad11b2918f3cd7abdebe794b131d8;p=libs%2Fgl.git diff --git a/Build b/Build index b83b3c7c..f0abdf8e 100644 --- a/Build +++ b/Build @@ -2,21 +2,47 @@ package "mspgl" { - description "C++ wrappers for OpenGL"; - version "0.1"; + version "1.1"; + description "Lightweight C++/OpenGL graphics engine"; - require "opengl"; require "mspdatafile"; - require "devil"; - build_info + require "mspgbase"; + require "opengl"; + + headers "msp/gl" { - library "ILU"; + 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"; }; };