Changes between Version 1 and Version 2 of CMakeWindowsRegressionQuickstart


Ignore:
Timestamp:
Jun 17, 2008, 12:58:47 AM (14 years ago)
Author:
troy d. straszheim
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CMakeWindowsRegressionQuickstart

    v1 v2  
    1 Start in an empty directory:
     1Run a command window with your development environment loaded.  On a new vista box with Visual Studio 2008 Express, this
     2is available at
     3{{{
     4Start ->
     5  All Programs ->
     6    Visual Studio 2008 Express Edition ->
     7      Visual Studio Tools ->
     8        Visual Studio 2008 Command Prompt
     9}}}
     10
     11Choose an empty directory to work in.  I choose one where the path mirrors the path to
     12the code in the svn repository:
    213{{{
    314c:\boost\branches\CMake\release>dir
     
    5970c:\boost\branches\CMake\release>cd build
    6071}}}
    61 Now do the initial cmake configuration.  The options are as follows
     72Now do the initial cmake configuration.  The options are as follows:
     73
    6274`BOOST_BUILD_SLAVE`
    6375  Enable build slave mode
     
    6981  Specify `nmake` as the make program
    7082
    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
     83It looks like this (the wrapping and indentation on the commandline are mine,
     84for clarity):
     85
     86{{{
     87c:\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
    7592-- The C compiler identification is MSVC
    7693-- The CXX compiler identification is MSVC