X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=84fd406d077c9acb15e0c6f11d048e6ead7101c0;hp=3ad1eda961bd48fd41a27f35430440cbd1130b62;hb=47df471884234130a2a27f0a5fc842df3f994a3e;hpb=9da6abdcabec59f4845da256a8ad75a810ed1589 diff --git a/Build b/Build index 3ad1eda..84fd406 100644 --- a/Build +++ b/Build @@ -2,7 +2,10 @@ package "mspstrings" { - require "mspmisc"; + description "Mikkosoft Productions string utilities library"; + version "0.1"; + + require "mspcore"; library "mspstrings" { @@ -10,4 +13,26 @@ package "mspstrings" install true; install_headers "msp/strings"; }; + + program "grep" + { + source "grep.cpp"; + build_info + { + incpath "source"; + libpath "."; + library "mspstrings"; + }; + }; + + program "transcode" + { + source "transcode.cpp"; + build_info + { + incpath "source"; + libpath "."; + library "mspstrings"; + }; + }; };