X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=4ea0aa793964f6e0141c196db46337b871e49f5b;hb=bd479bfbe3aa6096e9a27b4b766d56b231b387c4;hp=7d435789378c347037c54c55bde066a62eb374d7;hpb=a8c4b199788c87f0a22b8c8df1509905b6fb488b;p=libs%2Fgl.git diff --git a/Build b/Build index 7d435789..4ea0aa79 100644 --- a/Build +++ b/Build @@ -1,19 +1,71 @@ -/* $Id$ */ - package "mspgl" { - version "0.9"; - description "C++ wrappers for OpenGL"; - - tar_file "License.txt"; + version "1.1"; + description "Lightweight C++/OpenGL graphics engine"; + require "mspcore"; require "mspdatafile"; + require "mspgui"; require "opengl"; library "mspgl" { source "source"; install true; - install_headers "msp/gl"; + install_map + { + map "source" "include/msp/gl"; + }; + }; + + program "mesh2c" + { + source "tools/mesh2c.cpp"; + build_info + { + library "mspgl"; + }; + }; + + program "viewer" + { + source "tools/viewer.cpp"; + build_info + { + library "mspgl"; + }; + }; + + program "shaders" + { + source "demos/shaders.cpp"; + build_info + { + library "mspgl"; + }; + }; + + program "texturing" + { + source "demos/texturing.cpp"; + build_info + { + library "mspgl"; + }; + }; + + program "cubemap" + { + source "demos/cubemap.cpp"; + build_info + { + library "mspgl"; + }; + }; + + source_tarball + { + source "License.txt"; + source "Changelog.txt"; }; };