X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=c01f693c8a310a6261aa895991bccbd644cef9f3;hp=d7dfac8dfb1ad5c98b4af54c5bf00937de80adaa;hb=87edba02a23b1338934e36fac407966b25fcf811;hpb=55a79fbe96a87183fa4e11049eb161943636b1dd diff --git a/Build b/Build index d7dfac8..c01f693 100644 --- a/Build +++ b/Build @@ -1,38 +1,31 @@ -/* $Id$ */ - package "mspcore" { - version "0.1"; + version "2.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + if_arch "!windows" { - require "pthread"; build_info { - library "dl"; + library "pthread"; }; }; - - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "core" + if_arch "linux" { - source "source/core"; - install_headers "msp/core"; + build_info + { + library "dl"; + }; }; - headers "time" + feature "zlib" "Support compression with zlib" { - source "source/time"; - install_headers "msp/time"; + default "yes"; }; - - headers "debug" + if_feature "zlib" { - source "source/debug"; - install_headers "msp/debug"; + require "zlib"; }; library "mspcore" @@ -40,6 +33,61 @@ package "mspcore" source "source/core"; source "source/debug"; source "source/time"; + source "source/strings"; + source "source/stringcodec"; + source "source/io"; + source "source/fs"; + if_arch "windows" + { + overlay "windows"; + }; + if_arch "!windows" + { + overlay "unix"; + }; install true; + install_map + { + map "source" "include/msp"; + }; + }; + + program "grep" + { + source "examples/grep.cpp"; + use "mspcore"; + }; + + program "transcode" + { + source "examples/transcode.cpp"; + use "mspcore"; + }; + + program "ls" + { + source "examples/ls.cpp"; + use "mspcore"; + }; + + program "syncdir" + { + source "examples/syncdir.cpp"; + use "mspcore"; + }; + + if_feature "zlib" + { + program "z" + { + source "examples/z.cpp"; + use "mspcore"; + }; + }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };