Add 64-bit package for CMake.

This commit is contained in:
Rene Gollent 2013-07-28 19:33:18 -04:00
parent f270c76a2e
commit 293d5b1ede
1 changed files with 8 additions and 3 deletions

View File

@ -525,9 +525,7 @@ if [ IsOptionalHaikuImagePackageAdded CLucene ] {
# CMake
if [ IsOptionalHaikuImagePackageAdded CMake ] {
if $(TARGET_ARCH) != x86 {
Echo "No optional package CMake available for $(TARGET_ARCH)" ;
} else {
if $(TARGET_ARCH) = x86 {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
InstallOptionalHaikuImagePackage
cmake-2.8.5-r1a4-x86-gcc4-2012-08-28.zip
@ -539,6 +537,13 @@ if [ IsOptionalHaikuImagePackageAdded CMake ] {
: $(baseURL)/cmake-2.8.5-r1a4-x86-gcc2-2012-08-27.zip
: : true ;
}
} else if $(TARGET_ARCH) = x86_64 {
InstallOptionalHaikuImagePackage
cmake-2.8.5-x86_64-2013-07-28.zip
: $(baseURL)/cmake-2.8.5-x86_64-2013-07-28.zip
: : true ;
} else {
Echo "No optional package CMake available for $(TARGET_ARCH)" ;
}
}