Added CMake as an Optional Package.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33802 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Scott McCreary 2009-10-28 02:26:36 +00:00
parent 62ae78f7a8
commit 145eef6021

View File

@ -24,6 +24,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) && $(HAIKU_ALTERNATIVE_GCC_OUTPUT_DIR) {
# Clockwerk - native audio/video compositing
# CLucene - indexed file search
# Curl - a client that groks URLs
# CMake - cross platform make
# CVS - the version control system
# Development - more complete dev environment (including autotools)
# DevelopmentBase - basic development environment (gcc, headers, libs,...)
@ -246,6 +247,20 @@ if [ IsOptionalHaikuImagePackageAdded CLucene ] {
}
# CMake
if [ IsOptionalHaikuImagePackageAdded CMake ] {
if $(TARGET_ARCH) != x86 {
Echo "No optional package CMake available for $(TARGET_ARCH)" ;
} else {
InstallOptionalHaikuImagePackage cmake-2.8.0-rc3-x86-gcc2-2009-10-27
: $(baseURL)/cmake-2.8.0-rc3-x86-gcc2-2009-10-27.zip
:
: true
;
}
}
# Curl
if [ IsOptionalHaikuImagePackageAdded Curl ] {
if $(TARGET_ARCH) != x86 {