]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Update and clean up svn:ignore
[libs/core.git] / Build
diff --git a/Build b/Build
index d172391103c3d5d57894284d7083105aa5fa5de1..c40bc4ff796868e48e0f0b055f59917684301371 100644 (file)
--- a/Build
+++ b/Build
@@ -1,23 +1,24 @@
+/* $Id$ */
+
 package "mspcore"
 {
-       version "0.1";
+       version "1.0";
        description "Mikkosoft Productions core library";
 
+       tar_file "License.txt";
+
        require "sigc++-2.0";
        if "arch!=win32"
        {
-               require "pthread";
+               build_info
+               {
+                       library "pthread";
+                       library "dl";
+               };
        };
 
        feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
 
-       library "mspcore"
-       {
-               source "source/core";
-               source "source/time";
-               install true;
-       };
-
        headers "core"
        {
                source "source/core";
@@ -29,4 +30,18 @@ package "mspcore"
                source "source/time";
                install_headers "msp/time";
        };
+
+       headers "debug"
+       {
+               source "source/debug";
+               install_headers "msp/debug";
+       };
+
+       library "mspcore"
+       {
+               source "source/core";
+               source "source/debug";
+               source "source/time";
+               install true;
+       };
 };