X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=6ece10b05e07c70993ee64c9032015c436b9c73a;hp=e1f3fd7dc5bffe5140a0bf7449ce1d11716ff788;hb=cc541830f00cc3238edb82ff2e14e8b9060645b6;hpb=b56eb5ec1da675da0c66abc53c1e4f6c4e4cccbd diff --git a/Build b/Build index e1f3fd7..6ece10b 100644 --- a/Build +++ b/Build @@ -1,57 +1,47 @@ -/* $Id$ */ - package "mspcore" { - version "1.1"; + version "2.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + build_info { - build_info - { - library "pthread"; - }; + threads true; }; - if "arch=linux" + if_arch "linux" { build_info { library "dl"; }; }; - - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "msp/core" + if_arch "android" { - source "source/core"; - install true; + build_info + { + library "android"; + library "log"; + }; }; - headers "msp/time" + if_arch "darwin" { - source "source/time"; - install true; + build_info + { + library "Foundation.framework"; + }; }; - headers "msp/debug" + feature "zlib" "Support compression with zlib" { - source "source/debug"; - install true; + default "yes"; }; - - headers "msp/strings" + if_feature "zlib" { - source "source/strings"; - install true; + require "zlib"; }; - headers "msp/stringcodec" - { - source "source/stringcodec"; - install true; - }; + feature "exception_trace" "Support exception backtraces"; library "mspcore" { @@ -60,28 +50,70 @@ package "mspcore" 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 "grep.cpp"; - build_info - { - library "mspcore"; - }; + source "examples/grep.cpp"; + use "mspcore"; }; program "transcode" { - source "transcode.cpp"; - build_info + 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" { - library "mspcore"; + source "examples/z.cpp"; + use "mspcore"; }; }; - tarball "@src" + source_tarball { source "License.txt"; source "source/stringcodec/jisx0208.table";