X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=2aa78db278ab0674dfd1509fa88f91eebc803b8f;hp=8a7d481ee334aec0c03e8d4198492a1b61695448;hb=9a327fbe5dbad5edec04641527e65d5e7ea4c568;hpb=220e73f799b5c5fb49d4c6bd4e1ae6b2fbd8388b diff --git a/Build b/Build index 8a7d481..2aa78db 100644 --- a/Build +++ b/Build @@ -1,13 +1,90 @@ -// $Id$ - -package "mspstrings" +package "mspcore" { - require "mspcore"; + version "2.0"; + description "Mikkosoft Productions core library"; + + require "sigc++-2.0"; + build_info + { + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; - library "mspstrings" + feature "zlib" "Support compression with zlib" + { + default "yes"; + }; + if_feature "zlib" { - source "source"; + 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_headers "msp/strings"; + install_map + { + map "source" "include/msp"; + }; + }; + + program "grep" + { + source "examples/grep.cpp"; + use "mspcore"; + }; + + program "transcode" + { + source "examples/transcode.cpp"; + use "mspcore"; + }; + + program "ls" + { + 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"; }; };