]> git.tdb.fi Git - libs/gl.git/blob - Build
Add a tool to convert a mesh into C code
[libs/gl.git] / Build
1 /* $Id$ */
2
3 package "mspgl"
4 {
5         version "1.1";
6         description "Lightweight C++/OpenGL graphics engine";
7
8         require "mspdatafile";
9         require "mspgbase";
10         require "opengl";
11
12         headers "msp/gl"
13         {
14                 source "source";
15                 install true;
16         };
17
18         library "mspgl"
19         {
20                 source "source";
21                 install true;
22         };
23
24         program "mesh2c"
25         {
26                 source "mesh2c.cpp";
27                 build_info
28                 {
29                         library "mspgl";
30                 };
31         };
32
33         tarball "@src"
34         {
35                 source "License.txt";
36                 source "Changelog.txt";
37         };
38 };