X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=12e3114909efbd16356a498602d166db710ddf1e;hp=96b63820b4edfbc19bf404b8e2904760efc0b4ca;hb=8e613903920ee006c2c84e1af5620d92fbfb8957;hpb=3160a8b4cb443d282f7ca1e9d7c5ca53be173cc4 diff --git a/Build b/Build index 96b6382..12e3114 100644 --- a/Build +++ b/Build @@ -1,18 +1,119 @@ -/* $Id$ */ - -package "mspfs" +package "mspcore" { - version "1.0"; - description "Filesystem utilities"; + version "2.0"; + description "Mikkosoft Productions core library"; + + require "sigc++-2.0"; + build_info + { + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; + if_arch "android" + { + build_info + { + library "android"; + library "log"; + }; + }; - tar_file "License.txt"; + if_arch "darwin" + { + build_info + { + library "Foundation.framework"; + }; + }; - require "mspstrings"; + feature "zlib" "Support compression with zlib" + { + default "yes"; + }; + if_feature "zlib" + { + require "zlib"; + }; - library "mspfs" + library "mspcore" { - source "source"; + 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_headers "msp/fs"; + 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"; }; };