]> git.tdb.fi Git - libs/core.git/blob - Build
Assimilate exceptions and RefPtr from mspmisc
[libs/core.git] / Build
1 package "mspcore"
2 {
3         version "0.1";
4         description "Mikkosoft Productions core library";
5
6         require "sigc++-2.0";
7         if "arch!=win32"
8         {
9                 require "pthread";
10         };
11
12         feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
13
14         library "mspcore"
15         {
16                 source "source/core";
17                 source "source/time";
18                 install true;
19         };
20
21         headers "core"
22         {
23                 source "source/core";
24                 install_headers "msp/core";
25         };
26
27         headers "time"
28         {
29                 source "source/time";
30                 install_headers "msp/time";
31         };
32 };