X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=fb10fd448ee77676890b733a5553d3c61e5763e3;hp=740887bdfbda393f1e507a5b63fe14885cfab6be;hb=53ce154a2e446e82815034cb65a81b6784a767f5;hpb=f081ec1e48acba34298b46d9fab4a7bbcd9bee7d diff --git a/Build b/Build index 740887b..fb10fd4 100644 --- a/Build +++ b/Build @@ -1,94 +1,108 @@ -/* $Id$ */ - package "mspcore" { - version "1.1"; + version "2.0"; description "Mikkosoft Productions core library"; require "sigc++-2.0"; - if "arch!=win32" + build_info + { + threads true; + }; + if_arch "linux" { build_info { - library "pthread"; + library "dl"; }; }; - if "arch=linux" + if_arch "android" { build_info { - library "dl"; + library "android"; + library "log"; }; }; - feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - - headers "msp/core" + feature "zlib" "Support compression with zlib" { - source "source/core"; - install true; + default "yes"; }; - - headers "msp/time" + if_feature "zlib" { - source "source/time"; - install true; + require "zlib"; }; - headers "msp/debug" + library "mspcore" { + source "source/core"; source "source/debug"; - install true; - }; - - headers "msp/strings" - { + 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"; + }; install true; + install_map + { + map "source" "include/msp"; + }; }; - headers "msp/stringcodec" + program "grep" { - source "source/stringcodec"; - install true; + source "examples/grep.cpp"; + use "mspcore"; }; - headers "msp/io" + program "transcode" { - source "source/io"; - install true; + source "examples/transcode.cpp"; + use "mspcore"; }; - library "mspcore" + program "ls" { - source "source/core"; - source "source/debug"; - source "source/time"; - source "source/strings"; - source "source/stringcodec"; - source "source/io"; - install true; + source "examples/ls.cpp"; + use "mspcore"; }; - program "grep" + program "syncdir" { - source "grep.cpp"; - build_info - { - library "mspcore"; - }; + source "examples/syncdir.cpp"; + use "mspcore"; }; - program "transcode" + if_feature "zlib" { - source "transcode.cpp"; - build_info + program "z" { - library "mspcore"; + source "examples/z.cpp"; + use "mspcore"; }; }; - tarball "@src" + source_tarball { source "License.txt"; source "source/stringcodec/jisx0208.table";