X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=Build;h=6ece10b05e07c70993ee64c9032015c436b9c73a;hp=eb02c3b1a3e43214ead4e307212564d40bb57244;hb=74e62aabadda67d02b3eab09baa37c9d7640b794;hpb=a2a494043d5cf228cf1b3e5551e3abb486a60191 diff --git a/Build b/Build index eb02c3b..6ece10b 100644 --- a/Build +++ b/Build @@ -1,19 +1,121 @@ -/* $Id$ */ - -package "mspfs" +package "mspcore" { - version "1.0.1"; - description "Filesystem utilities"; + version "2.0"; + description "Mikkosoft Productions core library"; - tar_file "Changelog.txt"; - tar_file "License.txt"; + require "sigc++-2.0"; + build_info + { + threads true; + }; + if_arch "linux" + { + build_info + { + library "dl"; + }; + }; + if_arch "android" + { + build_info + { + library "android"; + library "log"; + }; + }; - require "mspstrings"; + if_arch "darwin" + { + build_info + { + library "Foundation.framework"; + }; + }; - library "mspfs" + feature "zlib" "Support compression with zlib" { - source "source"; + 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_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"; }; };