X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=aea04a16e0a12b39f8e30d3b945cfffa058d14c6;hp=e1f3fd7dc5bffe5140a0bf7449ce1d11716ff788;hb=e9606fcfd202207a029fff31f03b8e1a7a0d2963;hpb=b56eb5ec1da675da0c66abc53c1e4f6c4e4cccbd diff --git a/Build b/Build index e1f3fd7..aea04a1 100644 --- a/Build +++ b/Build @@ -1,19 +1,14 @@ -/* $Id$ */ - package "mspcore" { - version "1.1"; + version "2.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + build_info { - build_info - { - library "pthread"; - }; + threads true; }; - if "arch=linux" + if_arch "linux" { build_info { @@ -21,67 +16,77 @@ package "mspcore" }; }; - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "msp/core" + feature "zlib" "Support compression with zlib" { - source "source/core"; - install true; + default "yes"; }; - - headers "msp/time" + if_feature "zlib" { - source "source/time"; - install true; + require "zlib"; }; - headers "msp/debug" + library "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 "darwin" + { + overlay "osx"; + }; + if_arch "!windows" + { + overlay "unix"; + }; install true; + install_map + { + map "source" "include/msp"; + }; }; - headers "msp/strings" + program "grep" { - source "source/strings"; - install true; + source "examples/grep.cpp"; + use "mspcore"; }; - headers "msp/stringcodec" + program "transcode" { - source "source/stringcodec"; - install true; + source "examples/transcode.cpp"; + use "mspcore"; }; - library "mspcore" + program "ls" { - source "source/core"; - source "source/debug"; - source "source/time"; - source "source/strings"; - source "source/stringcodec"; - install true; + source "examples/ls.cpp"; + use "mspcore"; }; - program "grep" + program "syncdir" { - source "grep.cpp"; - build_info - { - library "mspcore"; - }; + source "examples/syncdir.cpp"; + use "mspcore"; }; - program "transcode" + if_feature "zlib" { - source "transcode.cpp"; - build_info + program "z" { - library "mspcore"; + source "examples/z.cpp"; + use "mspcore"; }; }; - tarball "@src" + source_tarball { source "License.txt"; source "source/stringcodec/jisx0208.table";