]> git.tdb.fi Git - builder.git/blobdiff - builderrc
Refactor transitive dependencies to work on all targets
[builder.git] / builderrc
index 9be1df252f437e597ca707c92b5b0d453e615c70..39407207a0d8335093da2e5d63f56b9e5b2fd182 100644 (file)
--- a/builderrc
+++ b/builderrc
@@ -3,9 +3,14 @@ architecture "arm-linux"
        prefix "arm-linux-gnueabi";
 };
 
-architecture "windows"
+architecture "windows-32"
 {
-       prefix "i586-mingw32msvc";
+       prefix "i686-w64-mingw32";
+};
+
+architecture "windows-64"
+{
+       prefix "x86_64-w64-mingw32";
 };
 
 architecture "arm-android"
@@ -21,6 +26,7 @@ build_type "debug"
                define "DEBUG" "1";
                warning_level 3;
                fatal_warnings true;
+               runtime_path_mode ABSOLUTE;
        };
 };
 
@@ -33,6 +39,7 @@ build_type "optimized_debug"
                optimize 2;
                warning_level 3;
                fatal_warnings true;
+               runtime_path_mode ABSOLUTE;
        };
 };
 
@@ -43,6 +50,7 @@ build_type "release"
                optimize 3;
                strip true;
                warning_level 1;
+               runtime_path_mode RELATIVE;
        };
 };