X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=builderrc;h=9be1df252f437e597ca707c92b5b0d453e615c70;hb=c75c89d2425ab0c69e94d45a5d956286838bbc67;hp=0947330418ba9eb35d829e45df795fa063bbbee5;hpb=4d0d003b022943d8a0e39ba19078bab8d32d8857;p=builder.git diff --git a/builderrc b/builderrc index 0947330..9be1df2 100644 --- a/builderrc +++ b/builderrc @@ -1,89 +1,58 @@ -/* $Id$ */ +architecture "arm-linux" +{ + prefix "arm-linux-gnueabi"; +}; -binary_package "opengl" +architecture "windows" { - build_info - { - library "GL"; - }; + prefix "i586-mingw32msvc"; }; -binary_package "pthread" +architecture "arm-android" { - build_info - { - library "pthread"; - }; + prefix "arm-linux-androideabi"; }; -binary_package "gmpxx" +build_type "debug" { build_info { - library "gmpxx"; + debug true; + define "DEBUG" "1"; + warning_level 3; + fatal_warnings true; }; }; -binary_package "fmod4" +build_type "optimized_debug" { build_info { - incpath "@/api/inc"; - libpath "@/api/lib"; - library "fmodex"; + debug true; + define "DEBUG" "1"; + optimize 2; + warning_level 3; + fatal_warnings true; }; - need_path true; }; -binary_package "ode" +build_type "release" { build_info { - library "ode"; + optimize 3; + strip true; + warning_level 1; }; }; -binary_package "xlib" +build_type "static_release" { build_info { - library "X11"; + optimize 3; + strip true; + libmode STATIC; + warning_level 1; }; }; - -architecture "arm" -{ - 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"; -};