]> git.tdb.fi Git - libs/gl.git/blob - Build
A complex demo program to show off features of the engine
[libs/gl.git] / Build
1 package "mspgl"
2 {
3         version "1.1";
4         description "Lightweight C++/OpenGL graphics engine";
5
6         require "mspcore";
7         require "mspdatafile";
8         require "mspgui";
9         require "opengl";
10
11         library "mspgl"
12         {
13                 source "source";
14                 install true;
15                 install_map
16                 {
17                         map "source" "include/msp/gl";
18                 };
19         };
20
21         program "mesh2c"
22         {
23                 source "tools/mesh2c.cpp";
24                 build_info
25                 {
26                         library "mspgl";
27                 };
28         };
29
30         program "viewer"
31         {
32                 source "tools/viewer.cpp";
33                 build_info
34                 {
35                         library "mspgl";
36                 };
37         };
38
39         program "shaders"
40         {
41                 source "demos/shaders.cpp";
42                 build_info
43                 {
44                         library "mspgl";
45                 };
46         };
47
48         program "texturing"
49         {
50                 source "demos/texturing.cpp";
51                 build_info
52                 {
53                         library "mspgl";
54                 };
55         };
56
57         program "cubemap"
58         {
59                 source "demos/cubemap.cpp";
60                 build_info
61                 {
62                         library "mspgl";
63                 };
64         };
65
66         program "desertpillars"
67         {
68                 source "demos/desertpillars.cpp";
69                 build_info
70                 {
71                         library "mspgl";
72                 };
73         };
74
75         source_tarball
76         {
77                 source "License.txt";
78                 source "Changelog.txt";
79         };
80 };