]> git.tdb.fi Git - libs/core.git/blob - Build
b7d5d5b717a2155036d4301e27a8a01b41effaac
[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/debug";
18                 source "source/time";
19                 install true;
20         };
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 };