]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Add some utility functions for joining strings
[libs/core.git] / Build
diff --git a/Build b/Build
index d7b5541476bd817544e650a56b8779111c7b4271..6ece10b05e07c70993ee64c9032015c436b9c73a 100644 (file)
--- a/Build
+++ b/Build
-// $Id$
-
-package "mspstrings"
+package "mspcore"
 {
-       version "1.0";
-       description "String utilities library";
+       version "2.0";
+       description "Mikkosoft Productions core library";
 
-       tar_file "License.txt";
-       tar_file "source/jisx0208.table";
+       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 "mspcore";
+       if_arch "darwin"
+       {
+               build_info
+               {
+                       library "Foundation.framework";
+               };
+       };
 
-       library "mspstrings"
+       feature "zlib" "Support compression with zlib"
        {
-               source "source";
-               install true;
-               install_headers "msp/strings";
+               default "yes";
+       };
+       if_feature "zlib"
+       {
+               require "zlib";
        };
 
-       program "grep"
+       feature "exception_trace" "Support exception backtraces";
+
+       library "mspcore"
        {
-               source "grep.cpp";
-               build_info
+               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"
                {
-                       library "mspstrings";
+                       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 "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 "mspstrings";
+                       source "examples/z.cpp";
+                       use "mspcore";
                };
        };
+
+       source_tarball
+       {
+               source "License.txt";
+               source "source/stringcodec/jisx0208.table";
+       };
 };