{section: Introduction }
-This wiki page contains information regarding build modernization and consolidation.  For details on progress see Ticket #779 #1248
-
-{section: Goals and Objectives }
-The goal of updating the condor build mechanism is far more reaching then using the latest wiz-bang tool to build code, and is meant to address the following issues:
-
-*: _Build consistency across platforms (Including Windows):_ Currently Imake does a good job for build consistency across *nix variants, however there is an entirely different set of mechanics for dealing with builds on Windows, which few people really understand.  To make matters a bit more confusing, is that the mechanism by which we build & test on Windows is quite non-standard which presents an issue as condor becomes a more open source project. This plurality causes several issues in maintaining two desperate build files, with completely different mechanisms.  It would be in the best interests for the group in the long run to employ a single build mechanism which has support on all condor platforms.
-
-*: _Support for unit testing within the build:_ For the purposes of testing it is advantageous to have a build tool which supports running automated unit tests as part of a "unit" build, with a minimal amount of external overhead.
-
-*: _Packaging:_ Many build systems provide automated packaging for it's native environment.  This can be highly useful as it eliminates and automates custom build steps and scripts and makes it easier to maintain.  Having this requirement can reduce the overhead on condor developers and allow them to focus on bug fixes and new features.  It also allows flight worthy to get out of the packaging business and simplifies the consumption for downstream folks.
-
-{section: Possible Options }
-If we use the afore mentioned goals as hard requirements, then it eliminates a lot of possible choices, and only a couple remain:
-
-*: _SCons:_ SCons is a fairly powerful tool build atop of a python, which allows you to pretty much do anything.  The only major disadvantage is the issue of packaging, and size of adoption within the open source community.  There are also issues when dealing with exiting auto-tools style builds.
-
-*: _bjam:_ Created as a replacement/extension to perforce JAM it has it's own syntax and supports numerous platforms, it also does not provide flexible packaging features, and lacks the transition glue to move from an auto-tools style build.
-
-*: *CMake - winner:* CMake is widely adopted in the open source community as a x-platform replacement for auto-tools style builds.  It has it's own Macro-style syntax, but unlike the afore mentioned tools it is a generator similar to Imake and it works with existing tools (make, visual studio).  Another powerful tool in the "CMake warchest" is CPack, which allows for various methods of packaging, across multiple OS distributions.
+This wiki page contains information regarding build modernization and consolidation using CMake.  For details on progress see Ticket #779 #1248
 
 {section: Getting Started }
 1.) You will need to obtain CMake 2.8 or > for the target platform you are working on.  Darwin requires 2.8.2 or greater