X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=cdd83c4cdfcd72b51f580490990e20e45243afff;hp=8a7d481ee334aec0c03e8d4198492a1b61695448;hb=378ec811c8df431f5b4e7094eb1949476d3a79fe;hpb=220e73f799b5c5fb49d4c6bd4e1ae6b2fbd8388b diff --git a/Build b/Build index 8a7d481..cdd83c4 100644 --- a/Build +++ b/Build @@ -1,13 +1,96 @@ -// $Id$ +/* $Id$ */ -package "mspstrings" +package "mspcore" { - require "mspcore"; + version "1.1"; + description "Mikkosoft Productions core library"; - library "mspstrings" + require "sigc++-2.0"; + if "arch!=win32" { - source "source"; + build_info + { + library "pthread"; + }; + }; + if "arch=linux" + { + build_info + { + library "dl"; + }; + }; + + feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; + + headers "msp/core" + { + source "source/core"; + install true; + }; + + headers "msp/time" + { + source "source/time"; install true; - install_headers "msp/strings"; + }; + + headers "msp/debug" + { + source "source/debug"; + install true; + }; + + headers "msp/strings" + { + source "source/strings"; + install true; + }; + + headers "msp/stringcodec" + { + source "source/stringcodec"; + install true; + }; + + headers "msp/io" + { + source "src/io"; + install true; + }; + + library "mspcore" + { + source "source/core"; + source "source/debug"; + source "source/time"; + source "source/strings"; + source "source/stringcodec"; + source "source/io"; + install true; + }; + + program "grep" + { + source "grep.cpp"; + build_info + { + library "mspcore"; + }; + }; + + program "transcode" + { + source "transcode.cpp"; + build_info + { + library "mspcore"; + }; + }; + + tarball "@src" + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };