]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Deal with the activity being recreated during process lifetime
[libs/core.git] / Build
diff --git a/Build b/Build
index eb16f4b8e9cef640c62008d8749ed8dc8406c0fd..fb10fd448ee77676890b733a5553d3c61e5763e3 100644 (file)
--- a/Build
+++ b/Build
-// $Id$
-
-package "mspstrings"
+package "mspcore"
 {
-       version "1.1";
-       description "String utilities library";
+       version "2.0";
+       description "Mikkosoft Productions core library";
 
-       require "mspcore";
+       require "sigc++-2.0";
+       build_info
+       {
+               threads true;
+       };
+       if_arch "linux"
+       {
+               build_info
+               {
+                       library "dl";
+               };
+       };
+       if_arch "android"
+       {
+               build_info
+               {
+                       library "android";
+                       library "log";
+               };
+       };
 
-       headers "msp/strings"
+       feature "zlib" "Support compression with zlib"
        {
-               source "source";
-               install true;
+               default "yes";
+       };
+       if_feature "zlib"
+       {
+               require "zlib";
        };
 
-       library "mspstrings"
+       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";
+               };
                install true;
+               install_map
+               {
+                       map "source" "include/msp";
+               };
        };
 
        program "grep"
        {
-               source "grep.cpp";
-               build_info
-               {
-                       library "mspstrings";
-               };
+               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";
                };
        };
 
-       tarball "@src"
+       source_tarball
        {
                source "License.txt";
-               source "source/jisx0208.table";
+               source "source/stringcodec/jisx0208.table";
        };
 };