X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=253b93b5e10b53b058deda677e632f9d9deffc72;hb=5889d53f8f073ff0e1e1ebbd786abecd8352a7b3;hp=bec4c611147ddd37f86acb54d416b7c75421831b;hpb=7ea42ed1861d0fccd85de3795f48bb7e0efe948d;p=libs%2Fcore.git diff --git a/Build b/Build index bec4c61..253b93b 100644 --- a/Build +++ b/Build @@ -1,18 +1,29 @@ +/* $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"; + }; }; + if "arch=linux" + { + build_info + { + library "dl"; + }; + }; + + feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; headers "core" { @@ -25,4 +36,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; + }; };