]> git.tdb.fi Git - libs/core.git/blob - Build
Update and clean up svn:ignore
[libs/core.git] / Build
1 /* $Id$ */
2
3 package "mspcore"
4 {
5         version "1.0";
6         description "Mikkosoft Productions core library";
7
8         tar_file "License.txt";
9
10         require "sigc++-2.0";
11         if "arch!=win32"
12         {
13                 build_info
14                 {
15                         library "pthread";
16                         library "dl";
17                 };
18         };
19
20         feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
21
22         headers "core"
23         {
24                 source "source/core";
25                 install_headers "msp/core";
26         };
27
28         headers "time"
29         {
30                 source "source/time";
31                 install_headers "msp/time";
32         };
33
34         headers "debug"
35         {
36                 source "source/debug";
37                 install_headers "msp/debug";
38         };
39
40         library "mspcore"
41         {
42                 source "source/core";
43                 source "source/debug";
44                 source "source/time";
45                 install true;
46         };
47 };