From: Mikko Rasa Date: Sun, 15 Jul 2012 17:29:59 +0000 (+0300) Subject: Add a statically linked release build type X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=b1f873e8b4ebe5053bc97f637bd4c79f8f4c40cc;p=builder.git Add a statically linked release build type --- diff --git a/builderrc b/builderrc index 5501015..2d9361f 100644 --- a/builderrc +++ b/builderrc @@ -112,3 +112,13 @@ build_type "release" strip true; }; }; + +build_type "static_release" +{ + build_info + { + optimize 3; + strip true; + libmode STATIC; + }; +};