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