]> git.tdb.fi Git - libs/core.git/blobdiff - Build
Fix signedness errors from MSVC
[libs/core.git] / Build
diff --git a/Build b/Build
index b7d5d5b717a2155036d4301e27a8a01b41effaac..810880346774ca546a57a848b1be3c19aeeafa1a 100644 (file)
--- a/Build
+++ b/Build
 package "mspcore"
 {
-       version "0.1";
+       version "3.0";
        description "Mikkosoft Productions core library";
 
        require "sigc++-2.0";
-       if "arch!=win32"
+       build_info
        {
-               require "pthread";
+               threads true;
+               standard CXX "c++11";
+       };
+       if_arch "linux"
+       {
+               build_info
+               {
+                       library "dl";
+               };
+       };
+       if_arch "android"
+       {
+               build_info
+               {
+                       library "android";
+                       library "log";
+               };
+       };
+
+       if_arch "darwin"
+       {
+               build_info
+               {
+                       library "Foundation.framework";
+               };
+       };
+
+       feature "zlib" "Support compression with zlib"
+       {
+               default "yes";
+       };
+       if_feature "zlib"
+       {
+               require "zlib";
        };
 
-       feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
+       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";
+               };
        };
 
-       headers "core"
+       program "grep"
        {
-               source "source/core";
-               install_headers "msp/core";
+               source "examples/grep.cpp";
+               use "mspcore";
        };
 
-       headers "time"
+       program "transcode"
        {
-               source "source/time";
-               install_headers "msp/time";
+               source "examples/transcode.cpp";
+               use "mspcore";
        };
 
-       headers "debug"
+       program "ls"
        {
-               source "source/debug";
-               install_headers "msp/debug";
+               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";
        };
 };