Changeset 2368

Show
Ignore:
Timestamp:
03/01/08 18:11:00 (10 months ago)
Author:
edmanm
Message:

r155@lysithea: edmanm | 2008-03-01 18:10:55 -0500
Add a note to the INSTALL file about out-of-source builds.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vidalia/trunk/INSTALL

    r2336 r2368  
    1717                           cmake . && make 
    1818   
     19     [optional] CMake also supports out-of-source builds, so compiled and 
     20     generated files are kept separate from the source tree. For example, you 
     21     can create a build directory as follows: 
     22 
     23                        mkdir build && cd build 
     24 
     25     Instead of the 'cmake .' command listed above, you would configure and 
     26     compile Vidalia by running: 
     27 
     28                           cmake .. && make 
     29 
    1930  2. When the previous command finishes, Vidalia's binary will be 
    2031     placed in the src/vidalia/ directory. 
     
    162173 
    163174 
    164  
    165175Available Configuration Options 
    166176-------------------------------