Changes between Version 1 and Version 2 of CMakeWindowsRegressionQuickstart
- Timestamp:
- Jun 17, 2008, 12:58:47 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CMakeWindowsRegressionQuickstart
v1 v2 1 Start in an empty directory: 1 Run a command window with your development environment loaded. On a new vista box with Visual Studio 2008 Express, this 2 is available at 3 {{{ 4 Start -> 5 All Programs -> 6 Visual Studio 2008 Express Edition -> 7 Visual Studio Tools -> 8 Visual Studio 2008 Command Prompt 9 }}} 10 11 Choose an empty directory to work in. I choose one where the path mirrors the path to 12 the code in the svn repository: 2 13 {{{ 3 14 c:\boost\branches\CMake\release>dir … … 59 70 c:\boost\branches\CMake\release>cd build 60 71 }}} 61 Now do the initial cmake configuration. The options are as follows 72 Now do the initial cmake configuration. The options are as follows: 73 62 74 `BOOST_BUILD_SLAVE` 63 75 Enable build slave mode … … 69 81 Specify `nmake` as the make program 70 82 71 It looks like this: 72 73 {{{ 74 c:\boost\branches\CMake\release\build>cmake -DBOOST_BUILD_SLAVE=ON -DBUILD_TESTING=ON -G"NMake Makefiles" -DCMAKE_MAKE_PROGRAM:FILEPATH=nmake ../src 83 It looks like this (the wrapping and indentation on the commandline are mine, 84 for clarity): 85 86 {{{ 87 c:\boost\branches\CMake\release\build>cmake -DBOOST_BUILD_SLAVE=ON 88 -DBUILD_TESTING=ON 89 -G"NMake Makefiles" 90 -DCMAKE_MAKE_PROGRAM:FILEPATH=nmake 91 ../src 75 92 -- The C compiler identification is MSVC 76 93 -- The CXX compiler identification is MSVC