X-Git-Url: http://git.tdb.fi/?p=builder.git;a=blobdiff_plain;f=builderrc;h=d84a15bf970bfaa244afcc9c436abec4b87c05b2;hp=0947330418ba9eb35d829e45df795fa063bbbee5;hb=HEAD;hpb=4d0d003b022943d8a0e39ba19078bab8d32d8857 diff --git a/builderrc b/builderrc index 0947330..3940720 100644 --- 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; + }; };