]> git.tdb.fi Git - libs/core.git/blob - Build
Drop copyright and license notices from source files
[libs/core.git] / Build
1 /* $Id$ */
2
3 package "mspcore"
4 {
5         version "1.1";
6         description "Mikkosoft Productions core library";
7
8         require "sigc++-2.0";
9         if "arch!=win32"
10         {
11                 build_info
12                 {
13                         library "pthread";
14                 };
15         };
16         if "arch=linux"
17         {
18                 build_info
19                 {
20                         library "dl";
21                 };
22         };
23
24         feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
25
26         headers "msp/core"
27         {
28                 source "source/core";
29                 install true;
30         };
31
32         headers "msp/time"
33         {
34                 source "source/time";
35                 install true;
36         };
37
38         headers "msp/debug"
39         {
40                 source "source/debug";
41                 install true;
42         };
43
44         headers "msp/strings"
45         {
46                 source "source/strings";
47                 install true;
48         };
49
50         headers "msp/stringcodec"
51         {
52                 source "source/stringcodec";
53                 install true;
54         };
55
56         library "mspcore"
57         {
58                 source "source/core";
59                 source "source/debug";
60                 source "source/time";
61                 source "source/strings";
62                 source "source/stringcodec";
63                 install true;
64         };
65
66         program "grep"
67         {
68                 source "grep.cpp";
69                 build_info
70                 {
71                         library "mspcore";
72                 };
73         };
74
75         program "transcode"
76         {
77                 source "transcode.cpp";
78                 build_info
79                 {
80                         library "mspcore";
81                 };
82         };
83
84         tarball "@src"
85         {
86                 source "License.txt";
87                 source "source/stringcodec/jisx0208.table";
88         };
89 };