X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=Build;h=4542ae5f33a241edcd40ec36ca459208480d789b;hb=b68a2931b5d9d8cda445be184fcc3fa573be49d1;hp=bec4c611147ddd37f86acb54d416b7c75421831b;hpb=7ea42ed1861d0fccd85de3795f48bb7e0efe948d;p=libs%2Fcore.git diff --git a/Build b/Build index bec4c61..4542ae5 100644 --- a/Build +++ b/Build @@ -1,19 +1,22 @@ +/* $Id$ */ + package "mspcore" { version "0.1"; description "Mikkosoft Productions core library"; - require "mspmisc"; - require "pthread"; require "sigc++-2.0"; - - library "mspcore" + 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 +28,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; + }; };