]> git.tdb.fi Git - libs/gltk.git/blob - Build
Update Build file with new library names and new features
[libs/gltk.git] / Build
1 package "mspgltk"
2 {
3         version "1.1";
4         description "OpenGL-based widget toolkit";
5
6         require "mspgl";
7         require "mspgui";
8         require "mspcore";
9
10         headers "msp/gltk"
11         {
12                 source "source";
13                 install true;
14         };
15
16         library "mspgltk"
17         {
18                 source "source";
19                 install true;
20                 install_map
21                 {
22                         map "source" "include/msp/gltk";
23                 };
24         };
25
26         program "helloworld"
27         {
28                 source "helloworld.cpp";
29                 build_info
30                 {
31                         library "mspgltk";
32                 };
33         };
34
35         source_tarball
36         {
37                 source "License.txt";
38                 source "Changelog.txt";
39         };
40 };