X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=359f6b197204d1a63489e221ace0c36cb27ac1f3;hb=d5dd704b2576f878809e87dbb8ff8591b9bdbce4;hp=c40bc4ff796868e48e0f0b055f59917684301371;hpb=26c74ed90f3e6c8f8df512b398026530b65f5e55;p=libs%2Fcore.git diff --git a/Build b/Build index c40bc4f..359f6b1 100644 --- a/Build +++ b/Build @@ -2,39 +2,43 @@ package "mspcore" { - version "1.0"; + version "1.1"; description "Mikkosoft Productions core library"; - tar_file "License.txt"; - require "sigc++-2.0"; if "arch!=win32" { build_info { library "pthread"; + }; + }; + if "arch=linux" + { + build_info + { library "dl"; }; }; feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - headers "core" + headers "msp/core" { source "source/core"; - install_headers "msp/core"; + install true; }; - headers "time" + headers "msp/time" { source "source/time"; - install_headers "msp/time"; + install true; }; - headers "debug" + headers "msp/debug" { source "source/debug"; - install_headers "msp/debug"; + install true; }; library "mspcore" @@ -44,4 +48,9 @@ package "mspcore" source "source/time"; install true; }; + + tarball "@src" + { + source "License.txt"; + }; };