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