{section: Getting Started }
 1.) You will need to obtain CMake 2.6 or > for the target platform you are working on.
 
-2.) Checkout origin/CMAKE, for windows you will need git 1.6.4 or greater.
+2.) Checkout origin/V7_5-cmake-build, for windows you will need git 1.6.4 or greater.
 
-2.5) Windows only: Because the temporary structure is softlinks to the original files, this causes an issue on windows. So for the time being you will need to flatten the linking using cygwin.
+3.) cmake ./CMakeLists.txt or run cmake-gui
 
-cp -r -L new_build new_build_win (I'm debating on eliminating the softlinks)
+4.) Now you can run make or open the visual studio solution file.
 
-3.) Because the build expects that you have certain pre-reqs installed and defaults to a clipped build (atm).  You will likely need to install the default set of clipped && proper libraries.  On windows this means staging the externals into a location until I can get around to writing a pre-configure script.
+*Windows Only:*
 
-4.) Navigate to CONDOR_SRC/src/new_build
+Prior to building for the 1st time there are some prerequisites that you will need to perform
 
-5.) cmake ./CMakeLists.txt
+5.) Install the lastest platform SDK.  (close .sln & repoen)
 
-6.) make || open the visual studio project & build
-If you wish to see the native output type make VERBOSE=1
+6.) Open Tools->Options under "Projects and Solutions" click on VC++ Directories and add the following to the Executable directories $(SolutionDir)\build\bin
 
+*Temporary Steps*
+
+7.) Add the property sheet for uw_externals to build\externals\external.vsprops
+
+8.) In the Solution View right click on the uw_externals project and build.
+
+Now you can build the solution regularly.
 
 {section: Contributing}
-All of the updated cmake files exist under src/new_build and are open to contribution.  The current branch tracks against master(7.5 series) and all files under new_build are a series of softlinks against the originals to allow for easy merge-outs, and to allow for parallel builds in case it is needed.  There are a substantial number of changes and cruft removal in this branch so there may need to be a bit of work to get the old build to function in this new branch, as I have not made it a priority atm.
+All of the updated cmake files exist under src directories and are open to contribution.  The current branch tracks against master(7.5 series).
 
 *Conventions*
 *: #include <lib>/header.h  (no more relative includes)
@@ -60,12 +66,7 @@
 The road ahead is to create a stub'd out CPackOption.cmake.in file and use cmakes configure options to fill in the gaps based on the target platform and environment, thereby reducing the cruft in the master CMakeLists.txt and providing the wiz-bang feature of platform specific package generation.
 
 {section: TODO}
-*: setup so all gen files & compilation files go to a single location for easy removal (similar to bjam) single checkout, w/multiple build products.
-*: Setup packaging configuration.
-*: Stage Externals as part of a configure.
-*: Deal with softlinks on windows
-*: Clean up remnants of gsoap
-*: add checks for perl, awk, and flex (right now I believe it is assumed)
+see Ticket #779
 
 {section: Links}