X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=51b3bc8276ea7f69e72fb8565797eea2811ba047;hp=c40bc4ff796868e48e0f0b055f59917684301371;hb=4798e6e5eac917b6225a1295fa5b118d88345237;hpb=26c74ed90f3e6c8f8df512b398026530b65f5e55 diff --git a/Build b/Build index c40bc4f..51b3bc8 100644 --- a/Build +++ b/Build @@ -1,40 +1,31 @@ -/* $Id$ */ - package "mspcore" { - version "1.0"; + version "2.0"; description "Mikkosoft Productions core library"; - tar_file "License.txt"; - require "sigc++-2.0"; - if "arch!=win32" + if_arch "!windows" { build_info { library "pthread"; - library "dl"; }; }; - - 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" @@ -42,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"; }; };