]> git.tdb.fi Git - libs/core.git/blob - Build
Move files around to prepare for assimilation into core
[libs/core.git] / Build
1 // $Id$
2
3 package "mspstrings"
4 {
5         version "1.1";
6         description "String utilities library";
7
8         require "mspcore";
9
10         headers "msp/strings"
11         {
12                 source "source/strings";
13                 install true;
14         };
15
16         headers "msp/stringcodec"
17         {
18                 source "source/stringcodec";
19                 install true;
20         };
21
22         library "mspstrings"
23         {
24                 source "source/strings";
25                 source "source/stringcodec";
26                 install true;
27         };
28
29         program "grep"
30         {
31                 source "grep.cpp";
32                 build_info
33                 {
34                         library "mspstrings";
35                 };
36         };
37
38         program "transcode"
39         {
40                 source "transcode.cpp";
41                 build_info
42                 {
43                         library "mspstrings";
44                 };
45         };
46
47         tarball "@src"
48         {
49                 source "License.txt";
50                 source "source/stringcodec/jisx0208.table";
51         };
52 };