]> git.tdb.fi Git - builder.git/blobdiff - builderrc
Refactor transitive dependencies to work on all targets
[builder.git] / builderrc
index 0947330418ba9eb35d829e45df795fa063bbbee5..39407207a0d8335093da2e5d63f56b9e5b2fd182 100644 (file)
--- a/builderrc
+++ b/builderrc
@@ -1,89 +1,66 @@
-/* $Id$ */
+architecture "arm-linux"
+{
+       prefix "arm-linux-gnueabi";
+};
 
-binary_package "opengl"
+architecture "windows-32"
 {
-       build_info
-       {
-               library "GL";
-       };
+       prefix "i686-w64-mingw32";
 };
 
-binary_package "pthread"
+architecture "windows-64"
 {
-       build_info
-       {
-               library "pthread";
-       };
+       prefix "x86_64-w64-mingw32";
 };
 
-binary_package "gmpxx"
+architecture "arm-android"
 {
-       build_info
-       {
-               library "gmpxx";
-       };
+       prefix "arm-linux-androideabi";
 };
 
-binary_package "fmod4"
+build_type "debug"
 {
        build_info
        {
-               incpath "@/api/inc";
-               libpath "@/api/lib";
-               library "fmodex";
+               debug true;
+               define "DEBUG" "1";
+               warning_level 3;
+               fatal_warnings true;
+               runtime_path_mode ABSOLUTE;
        };
-       need_path true;
 };
 
-binary_package "ode"
+build_type "optimized_debug"
 {
        build_info
        {
-               library "ode";
+               debug true;
+               define "DEBUG" "1";
+               optimize 2;
+               warning_level 3;
+               fatal_warnings true;
+               runtime_path_mode ABSOLUTE;
        };
 };
 
-binary_package "xlib"
+build_type "release"
 {
        build_info
        {
-               library "X11";
+               optimize 3;
+               strip true;
+               warning_level 1;
+               runtime_path_mode RELATIVE;
        };
 };
 
-architecture "arm"
+build_type "static_release"
 {
-       prefix "arm-linux-gnu";
-};
-
-architecture "win32"
-{
-       prefix "i586-mingw32msvc";
-};
-
-profile "debug"
-{
-       option "debug" "1";
-       option "outdir" "$profile";
-};
-
-profile "release"
-{
-       option "optimize" "3";
-       option "strip" "1";
-       option "outdir" "$profile";
-};
-
-profile "win32"
-{
-       option "arch" "win32";
-       option "prefix" "$HOME/local/$arch";
-       option "outdir" "$profile";
-};
-
-profile "arm"
-{
-       option "arch" "arm";
-       option "prefix" "$HOME/local/$arch";
-       option "outdir" "$profile";
+       build_info
+       {
+               optimize 3;
+               strip true;
+               libmode STATIC;
+               warning_level 1;
+       };
 };