X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=c40bc4ff796868e48e0f0b055f59917684301371;hp=bec4c611147ddd37f86acb54d416b7c75421831b;hb=26c74ed90f3e6c8f8df512b398026530b65f5e55;hpb=7ea42ed1861d0fccd85de3795f48bb7e0efe948d diff --git a/Build b/Build index bec4c61..c40bc4f 100644 --- a/Build +++ b/Build @@ -1,19 +1,24 @@ +/* $Id$ */ + package "mspcore" { - version "0.1"; + version "1.0"; description "Mikkosoft Productions core library"; - require "mspmisc"; - require "pthread"; - require "sigc++-2.0"; + tar_file "License.txt"; - library "mspcore" + require "sigc++-2.0"; + if "arch!=win32" { - source "source/core"; - source "source/time"; - install true; + build_info + { + library "pthread"; + library "dl"; + }; }; + feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; + headers "core" { source "source/core"; @@ -25,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; + }; };