X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=06545dc50a21490049519164b0f194ce3edb1c74;hp=3c44f713ac9697541c2f7db09b121f16eb3512f4;hb=refs%2Fheads%2Fstrings-master;hpb=58384e355b4a78730d69243f1092e47591f2f384 diff --git a/Build b/Build index 3c44f71..06545dc 100644 --- a/Build +++ b/Build @@ -1,11 +1,52 @@ +// $Id$ + package "mspstrings" { - require "mspmisc"; + version "1.1"; + description "String utilities library"; + + require "mspcore"; + + headers "msp/strings" + { + source "source/strings"; + install true; + }; + + headers "msp/stringcodec" + { + source "source/stringcodec"; + install true; + }; library "mspstrings" { - source "source"; + source "source/strings"; + source "source/stringcodec"; install true; - install_headers "msp/strings"; + }; + + program "grep" + { + source "grep.cpp"; + build_info + { + library "mspstrings"; + }; + }; + + program "transcode" + { + source "transcode.cpp"; + build_info + { + library "mspstrings"; + }; + }; + + tarball "@src" + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };