]> git.tdb.fi Git - libs/gl.git/blobdiff - Build
A complex demo program to show off features of the engine
[libs/gl.git] / Build
diff --git a/Build b/Build
index a70e9ac90bb1d5871c9cdcf5ec9edd21868db08d..8c537eb76051d49ad8d9cc8a0f8a2fb09f574720 100644 (file)
--- a/Build
+++ b/Build
@@ -1,18 +1,80 @@
-/* $Id$ */
-
 package "mspgl"
 {
-       description "C++ wrappers for OpenGL";
-       version "0.1";
+       version "1.1";
+       description "Lightweight C++/OpenGL graphics engine";
 
-       require "opengl";
+       require "mspcore";
        require "mspdatafile";
-       require "libpng";
+       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";
+               };
+       };
+
+       program "desertpillars"
+       {
+               source "demos/desertpillars.cpp";
+               build_info
+               {
+                       library "mspgl";
+               };
+       };
+
+       source_tarball
+       {
+               source "License.txt";
+               source "Changelog.txt";
        };
 };