Skip to content
Snippets Groups Projects
Commit c3bfd7ab authored by arseny.kapoulkine@gmail.com's avatar arseny.kapoulkine@gmail.com
Browse files

Added BlackBerry NDK build support

git-svn-id: http://pugixml.googlecode.com/svn/trunk@844 99668b35-9821-0410-8761-19e4c4f06640
parent f6c86132
No related branches found
No related tags found
No related merge requests found
# Rules for Jamfile.jam
if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) || $(toolset:I=^bada) || $(toolset:I=^android) )
if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) || $(toolset:I=^bada) || $(toolset:I=^android) || $(toolset:I=^blackberry) )
{
if ( $(toolset:I=^gcc) )
{
......@@ -10,6 +10,10 @@ if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) || $(toolset:I=^bada) || $(toolset
{
GCCPATH = "%$(toolset)_PATH%\\Tools\\Toolchains\\ARM\\bin\\arm-bada-eabi-" ;
}
else if ( $(toolset:I=^blackberry) )
{
GCCPATH = "%$(toolset)_PATH%\\host\\win32\\x86\\usr\\bin\\ntoarmv7-" ;
}
else if ( $(toolset:I=^android) )
{
GCCPATH = "%$(toolset)_PATH%\\bin\\arm-linux-androideabi-" ;
......@@ -717,7 +721,7 @@ if ( $(UNIX) )
}
else
{
if ( $(toolset:I=(^xbox360|^ps3|wince|^bada$)) )
if ( $(toolset:I=(^xbox360|^ps3|wince|^bada|^blackberry$)) )
{
RUNRESULT = "skiprun" ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment