X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=51b3bc8276ea7f69e72fb8565797eea2811ba047;hp=96b63820b4edfbc19bf404b8e2904760efc0b4ca;hb=be67e7f4a28332bfab44d0cbc9f008e24ddf3510;hpb=3160a8b4cb443d282f7ca1e9d7c5ca53be173cc4 diff --git a/Build b/Build index 96b6382..51b3bc8 100644 --- a/Build +++ b/Build @@ -1,18 +1,100 @@ -/* $Id$ */ - -package "mspfs" +package "mspcore" { - version "1.0"; - description "Filesystem utilities"; + version "2.0"; + description "Mikkosoft Productions core library"; - tar_file "License.txt"; + require "sigc++-2.0"; + if_arch "!windows" + { + build_info + { + library "pthread"; + }; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; - require "mspstrings"; + feature "zlib" "Support compression with zlib" + { + default "yes"; + }; + if_feature "zlib" + { + require "zlib"; + }; - library "mspfs" + library "mspcore" { - source "source"; + source "source/core"; + source "source/debug"; + source "source/time"; + source "source/strings"; + source "source/stringcodec"; + source "source/io"; + source "source/fs"; install true; - install_headers "msp/fs"; + 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"; }; };