X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=builderrc;h=c9133d0df496149822e5ce049f8778204d17316e;hb=93c0466ccf46aa3d43541a1aa6a75192d237b3eb;hp=9e624e3691a96a301052394dcc353946e4de164b;hpb=433f9ef196b6f5af6bb38447b650f5afaa5a783a;p=builder.git diff --git a/builderrc b/builderrc index 9e624e3..c9133d0 100644 --- a/builderrc +++ b/builderrc @@ -1,84 +1,53 @@ -/* $Id$ */ - -binary_package "opengl" -{ - build_info - { - library "GL"; - }; -}; - -binary_package "opengl/windows" -{ - build_info - { - library "opengl32"; - }; -}; - -binary_package "gmpxx" +architecture "arm" { - build_info - { - library "gmpxx"; - }; + prefix "arm-linux-gnueabi"; }; -binary_package "fmod4" +architecture "windows" { - build_info - { - incpath "@/api/inc"; - libpath "@/api/lib"; - library "fmodex"; - }; - need_path true; + prefix "i586-mingw32msvc"; }; -binary_package "xlib" +build_type "debug" { build_info { - library "X11"; + debug true; + define "DEBUG" "1"; + warning_level 3; + fatal_warnings true; }; }; -binary_package "devil" +build_type "optimized_debug" { build_info { - library "IL"; + debug true; + define "DEBUG" "1"; + optimize 2; + warning_level 3; + fatal_warnings true; }; }; -binary_package "devil/windows" +build_type "release" { build_info { - library "DevIL"; + optimize 3; + strip true; + warning_level 1; }; }; -binary_package "openal/windows" +build_type "static_release" { build_info { - library "OpenAL32"; + optimize 3; + strip true; + libmode STATIC; + warning_level 1; }; }; - -cross_prefix "arm" "arm-linux-gnueabi"; -cross_prefix "windows" "i586-mingw32msvc"; - -profile "debug" -{ - option "debug" "1"; - option "outdir" "$profile"; -}; - -profile "release" -{ - option "optimize" "3"; - option "strip" "1"; - option "outdir" "$profile"; -};