X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=builderrc;h=f8f87888a0058e6492bd503fa0baecbc8a93bffa;hb=740d7cdd71fc2f068e44bfc6c8cc7e9565de16f6;hp=a39a8777c32c44d302a51f099b687998143a2da7;hpb=329dc80e392faf7354338621e73dba1880fc767d;p=builder.git diff --git a/builderrc b/builderrc index a39a877..f8f8788 100644 --- a/builderrc +++ b/builderrc @@ -8,11 +8,20 @@ binary_package "opengl" }; }; -binary_package "pthread" +binary_package "opengles" { build_info { - library "pthread"; + library "GLESv2"; + library "EGL"; + }; +}; + +binary_package "opengl/windows" +{ + build_info + { + library "opengl32"; }; }; @@ -32,7 +41,6 @@ binary_package "fmod4" libpath "@/api/lib"; library "fmodex"; }; - need_path true; }; binary_package "xlib" @@ -43,39 +51,80 @@ binary_package "xlib" }; }; +binary_package "devil" +{ + build_info + { + library "IL"; + }; +}; + +binary_package "devil/windows" +{ + build_info + { + library "DevIL"; + }; +}; + +binary_package "openal/windows" +{ + build_info + { + library "OpenAL32"; + }; +}; + architecture "arm" { - prefix "arm-linux-gnu"; + prefix "arm-linux-gnueabi"; }; -architecture "win32" +architecture "windows" { prefix "i586-mingw32msvc"; }; -profile "debug" +build_type "debug" { - option "debug" "1"; - option "outdir" "$profile"; + build_info + { + debug true; + define "DEBUG" "1"; + warning_level 3; + fatal_warnings true; + }; }; -profile "release" +build_type "optimized_debug" { - option "optimize" "3"; - option "strip" "1"; - option "outdir" "$profile"; + build_info + { + debug true; + define "DEBUG" "1"; + optimize 2; + warning_level 3; + fatal_warnings true; + }; }; -profile "win32" +build_type "release" { - option "arch" "win32"; - option "prefix" "$HOME/local/$arch"; - option "outdir" "$profile"; + build_info + { + optimize 3; + strip true; + warning_level 1; + }; }; -profile "arm" +build_type "static_release" { - option "arch" "arm"; - option "prefix" "$HOME/local/$arch"; - option "outdir" "$profile"; + build_info + { + optimize 3; + strip true; + libmode STATIC; + warning_level 1; + }; };