[haiku-commits] r33802 - haiku/trunk/build/jam

  • From: scott mc <scottmc2@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 28 Oct 2009 03:26:36 +0100 (CET)

Author: scottmc
Date: 2009-10-28 03:26:36 +0100 (Wed, 28 Oct 2009)
New Revision: 33802
Changeset: http://dev.haiku-os.org/changeset/33802/haiku

Modified:
   haiku/trunk/build/jam/OptionalPackages
Log:
Added CMake as an Optional Package.


Modified: haiku/trunk/build/jam/OptionalPackages
===================================================================
--- haiku/trunk/build/jam/OptionalPackages      2009-10-28 00:53:54 UTC (rev 
33801)
+++ haiku/trunk/build/jam/OptionalPackages      2009-10-28 02:26:36 UTC (rev 
33802)
@@ -24,6 +24,7 @@
 #      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 @@
 }
 
 
+# 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 {


Other related posts:

  • » [haiku-commits] r33802 - haiku/trunk/build/jam - scott mc