X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=aea04a16e0a12b39f8e30d3b945cfffa058d14c6;hp=cb81c573c78fe8e7c878225c5ae8eab000cde9af;hb=e9606fcfd202207a029fff31f03b8e1a7a0d2963;hpb=1493ea58d7f0bbf38a92cc166e9d07be3acebbc9 diff --git a/Build b/Build index cb81c57..aea04a1 100644 --- a/Build +++ b/Build @@ -1,34 +1,94 @@ -// $Id$ - -package "mspstrings" +package "mspcore" { - version "1.0"; - description "String utilities library"; + version "2.0"; + description "Mikkosoft Productions core library"; - require "mspcore"; + require "sigc++-2.0"; + build_info + { + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; - library "mspstrings" + feature "zlib" "Support compression with zlib" { - source "source"; - install true; - install_headers "msp/strings"; + default "yes"; + }; + if_feature "zlib" + { + require "zlib"; }; - program "grep" + library "mspcore" { - source "grep.cpp"; - build_info + 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" { - library "mspstrings"; + overlay "osx"; }; + if_arch "!windows" + { + overlay "unix"; + }; + install true; + install_map + { + map "source" "include/msp"; + }; + }; + + program "grep" + { + source "examples/grep.cpp"; + use "mspcore"; }; program "transcode" { - source "transcode.cpp"; - build_info + 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" { - library "mspstrings"; + source "examples/z.cpp"; + use "mspcore"; }; }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; + }; };