X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=2aa78db278ab0674dfd1509fa88f91eebc803b8f;hp=b7d5d5b717a2155036d4301e27a8a01b41effaac;hb=2a6afe61db5603d508468adbd538ad4e96acc3fc;hpb=9e8e96c9e98e4aed3713ca09011aebafc9f62f87 diff --git a/Build b/Build index b7d5d5b..2aa78db 100644 --- a/Build +++ b/Build @@ -1,39 +1,90 @@ package "mspcore" { - version "0.1"; + version "2.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + build_info { - require "pthread"; + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; }; - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; + feature "zlib" "Support compression with zlib" + { + default "yes"; + }; + if_feature "zlib" + { + require "zlib"; + }; 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 "!windows" + { + overlay "unix"; + }; install true; + install_map + { + map "source" "include/msp"; + }; }; - headers "core" + program "grep" { - source "source/core"; - install_headers "msp/core"; + source "examples/grep.cpp"; + use "mspcore"; }; - headers "time" + program "transcode" { - source "source/time"; - install_headers "msp/time"; + source "examples/transcode.cpp"; + use "mspcore"; }; - headers "debug" + program "ls" { - source "source/debug"; - install_headers "msp/debug"; + 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"; }; };