X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=621857dccd8b2e08ebeded6715ff303df8f4a9d3;hp=4542ae5f33a241edcd40ec36ca459208480d789b;hb=32d6e3c59c8ae64e06a5df18b2e7a067a3f2c23a;hpb=b68a2931b5d9d8cda445be184fcc3fa573be49d1 diff --git a/Build b/Build index 4542ae5..621857d 100644 --- a/Build +++ b/Build @@ -1,45 +1,79 @@ -/* $Id$ */ - package "mspcore" { - version "0.1"; + version "1.1"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + if_arch "!windows" { build_info { library "pthread"; + }; + }; + if_arch "linux" + { + build_info + { library "dl"; }; }; - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "core" + library "mspcore" { source "source/core"; - install_headers "msp/core"; + source "source/debug"; + source "source/time"; + source "source/strings"; + source "source/stringcodec"; + source "source/io"; + source "source/fs"; + install true; + install_map + { + map "source" "include/msp"; + }; }; - headers "time" + program "grep" { - source "source/time"; - install_headers "msp/time"; + source "examples/grep.cpp"; + build_info + { + library "mspcore"; + }; }; - headers "debug" + program "transcode" { - source "source/debug"; - install_headers "msp/debug"; + source "examples/transcode.cpp"; + build_info + { + library "mspcore"; + }; }; - library "mspcore" + program "ls" { - source "source/core"; - source "source/debug"; - source "source/time"; - install true; + source "examples/ls.cpp"; + build_info + { + library "mspcore"; + }; + }; + + program "syncdir" + { + source "examples/syncdir.cpp"; + build_info + { + library "mspcore"; + }; + }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };