X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=06545dc50a21490049519164b0f194ce3edb1c74;hp=8a7d481ee334aec0c03e8d4198492a1b61695448;hb=refs%2Fheads%2Fstrings-master;hpb=220e73f799b5c5fb49d4c6bd4e1ae6b2fbd8388b diff --git a/Build b/Build index 8a7d481..06545dc 100644 --- a/Build +++ b/Build @@ -2,12 +2,51 @@ package "mspstrings" { + 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"; }; };