X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=6ece10b05e07c70993ee64c9032015c436b9c73a;hp=d7dfac8dfb1ad5c98b4af54c5bf00937de80adaa;hb=acafbe566fb6f6b5592a2ec3dec667ba7cd3e7e4;hpb=55a79fbe96a87183fa4e11049eb161943636b1dd diff --git a/Build b/Build index d7dfac8..6ece10b 100644 --- a/Build +++ b/Build @@ -1,45 +1,121 @@ -/* $Id$ */ - package "mspcore" { - version "0.1"; + version "2.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + build_info + { + threads true; + }; + if_arch "linux" { - require "pthread"; build_info { library "dl"; }; }; - - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "core" + if_arch "android" { - source "source/core"; - install_headers "msp/core"; + build_info + { + library "android"; + library "log"; + }; }; - headers "time" + if_arch "darwin" { - source "source/time"; - install_headers "msp/time"; + build_info + { + library "Foundation.framework"; + }; }; - headers "debug" + feature "zlib" "Support compression with zlib" { - source "source/debug"; - install_headers "msp/debug"; + default "yes"; + }; + if_feature "zlib" + { + require "zlib"; }; + feature "exception_trace" "Support exception backtraces"; + library "mspcore" { source "source/core"; source "source/debug"; source "source/time"; + source "source/strings"; + source "source/stringcodec"; + source "source/io"; + source "source/fs"; + if_arch "windows" + { + overlay "windows"; + }; + if_arch "darwin" + { + overlay "osx"; + }; + if_arch "android" + { + overlay "android"; + build_info + { + keep_symbol "ANativeActivity_onCreate"; + }; + }; + if_arch "!windows" + { + overlay "unix"; + }; + overlay "generic"; install true; + install_map + { + map "source" "include/msp"; + }; + }; + + program "grep" + { + source "examples/grep.cpp"; + use "mspcore"; + }; + + program "transcode" + { + source "examples/transcode.cpp"; + use "mspcore"; + }; + + program "ls" + { + source "examples/ls.cpp"; + use "mspcore"; + }; + + program "syncdir" + { + source "examples/syncdir.cpp"; + use "mspcore"; + }; + + if_feature "zlib" + { + program "z" + { + source "examples/z.cpp"; + use "mspcore"; + }; + }; + + source_tarball + { + source "License.txt"; + source "source/stringcodec/jisx0208.table"; }; };