]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Bump version so I can do breaking changes
[libs/core.git] / Build
diff --git a/Build b/Build
index 253b93b5e10b53b058deda677e632f9d9deffc72..1321bb2760ca7c40c063e4f42caa9784b24da3a2 100644 (file)
--- a/Build
+++ b/Build
-/* $Id$ */
-
 package "mspcore"
 {
-       version "1.0";
+       version "3.0";
        description "Mikkosoft Productions core library";
 
-       tar_file "License.txt";
-
        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 "core"
+       if_arch "darwin"
        {
-               source "source/core";
-               install_headers "msp/core";
+               build_info
+               {
+                       library "Foundation.framework";
+               };
        };
 
-       headers "time"
+       feature "zlib" "Support compression with zlib"
        {
-               source "source/time";
-               install_headers "msp/time";
+               default "yes";
        };
-
-       headers "debug"
+       if_feature "zlib"
        {
-               source "source/debug";
-               install_headers "msp/debug";
+               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";
        };
 };