]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Add move semantics to Variant
[libs/core.git] / Build
diff --git a/Build b/Build
index 84fd406d077c9acb15e0c6f11d048e6ead7101c0..a2a3040f88af33e145d28e0241153a87864225ba 100644 (file)
--- a/Build
+++ b/Build
-// $Id$
-
-package "mspstrings"
+package "mspcore"
 {
-       description "Mikkosoft Productions string utilities library";
-       version "0.1";
+       version "3.0";
+       description "Mikkosoft Productions core library";
 
-       require "mspcore";
+       require "sigc++-2.0";
+       build_info
+       {
+               threads true;
+               standard CXX "c++11";
+       };
+       if_arch "linux"
+       {
+               build_info
+               {
+                       library "dl";
+               };
+       };
+       if_arch "android"
+       {
+               build_info
+               {
+                       library "android";
+                       library "log";
+               };
+       };
 
-       library "mspstrings"
+       if_arch "darwin"
        {
-               source "source";
-               install true;
-               install_headers "msp/strings";
+               build_info
+               {
+                       library "Foundation.framework";
+               };
        };
 
-       program "grep"
+       if_arch "windows"
        {
-               source "grep.cpp";
                build_info
                {
-                       incpath "source";
-                       libpath ".";
-                       library "mspstrings";
+                       library "advapi32";
+                       library "shell32";
                };
        };
 
+       feature "zlib" "Support compression with zlib"
+       {
+               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_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"
                {
-                       incpath "source";
-                       libpath ".";
-                       library "mspstrings";
+                       source "examples/z.cpp";
+                       use "mspcore";
                };
        };
+
+       source_tarball
+       {
+               source "License.txt";
+               source "source/stringcodec/jisx0208.table";
+       };
 };