X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=51b3bc8276ea7f69e72fb8565797eea2811ba047;hp=03dc8d22c3625eef39df51cc42ba98003c4203c9;hb=be67e7f4a28332bfab44d0cbc9f008e24ddf3510;hpb=f6147f00575bdf6e6b53c2ab81161f5f73d0ab84 diff --git a/Build b/Build index 03dc8d2..51b3bc8 100644 --- a/Build +++ b/Build @@ -1,32 +1,31 @@ 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 "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" @@ -34,6 +33,68 @@ package "mspcore" source "source/core"; source "source/debug"; source "source/time"; + source "source/strings"; + source "source/stringcodec"; + source "source/io"; + source "source/fs"; install true; + install_map + { + map "source" "include/msp"; + }; + }; + + program "grep" + { + source "examples/grep.cpp"; + build_info + { + library "mspcore"; + }; + }; + + program "transcode" + { + source "examples/transcode.cpp"; + build_info + { + library "mspcore"; + }; + }; + + program "ls" + { + source "examples/ls.cpp"; + build_info + { + library "mspcore"; + }; + }; + + program "syncdir" + { + source "examples/syncdir.cpp"; + build_info + { + library "mspcore"; + }; + }; + + if_feature "zlib" + { + program "z" + { + source "examples/z.cpp"; + build_info + { + library "mspcore"; + }; + }; + }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };