]> git.tdb.fi Git - libs/core.git/blob - Build
Convert svn:ignore to .gitignore
[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         library "mspcore"
45         {
46                 source "source/core";
47                 source "source/debug";
48                 source "source/time";
49                 install true;
50         };
51
52         tarball "@src"
53         {
54                 source "License.txt";
55         };
56 };