X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=51b3bc8276ea7f69e72fb8565797eea2811ba047;hp=688fe615fe70b98e709894345dcd837b265472d7;hb=4798e6e5eac917b6225a1295fa5b118d88345237;hpb=f3afcce30a6213fedba4330a5c0b1edc5b528b70 diff --git a/Build b/Build index 688fe61..51b3bc8 100644 --- a/Build +++ b/Build @@ -1,24 +1,100 @@ -// $Id$ - -package "mspstrings" +package "mspcore" { - require "mspcore"; + version "2.0"; + description "Mikkosoft Productions core library"; + + require "sigc++-2.0"; + if_arch "!windows" + { + build_info + { + library "pthread"; + }; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; - library "mspstrings" + feature "zlib" "Support compression with zlib" { - source "source"; + 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"; install true; - install_headers "msp/strings"; + install_map + { + map "source" "include/msp"; + }; }; program "grep" { - source "grep.cpp"; + source "examples/grep.cpp"; build_info { - incpath "source"; - libpath "."; - library "mspstrings"; + 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"; + }; };