]> git.tdb.fi Git - libs/gl.git/blob - Build
More compilation fixes
[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         headers "msp/gl"
12         {
13                 source "source";
14                 install true;
15         };
16
17         library "mspgl"
18         {
19                 source "source";
20                 install true;
21         };
22
23         program "mesh2c"
24         {
25                 source "tools/mesh2c.cpp";
26                 build_info
27                 {
28                         library "mspgl";
29                 };
30         };
31
32         program "viewer"
33         {
34                 source "tools/viewer.cpp";
35                 build_info
36                 {
37                         library "mspgl";
38                 };
39         };
40
41         program "shaders"
42         {
43                 source "demos/shaders.cpp";
44                 build_info
45                 {
46                         library "mspgl";
47                 };
48         };
49
50         program "texturing"
51         {
52                 source "demos/texturing.cpp";
53                 build_info
54                 {
55                         library "mspgl";
56                 };
57         };
58
59         tarball "@src"
60         {
61                 source "License.txt";
62                 source "Changelog.txt";
63         };
64 };