]> git.tdb.fi Git - libs/gl.git/blob - Build
Drop Id tags and copyright notices from files
[libs/gl.git] / Build
1 package "mspgl"
2 {
3         version "1.1";
4         description "Lightweight C++/OpenGL graphics engine";
5
6         require "mspdatafile";
7         require "mspgui";
8         require "opengl";
9
10         headers "msp/gl"
11         {
12                 source "source";
13                 install true;
14         };
15
16         library "mspgl"
17         {
18                 source "source";
19                 install true;
20         };
21
22         program "mesh2c"
23         {
24                 source "mesh2c.cpp";
25                 build_info
26                 {
27                         library "mspgl";
28                 };
29         };
30
31         program "viewer"
32         {
33                 source "viewer.cpp";
34                 build_info
35                 {
36                         library "mspgl";
37                 };
38         };
39
40         tarball "@src"
41         {
42                 source "License.txt";
43                 source "Changelog.txt";
44         };
45 };