Changes between Version 7 and Version 8 of StartModDev


Ignore:
Timestamp:
Nov 29, 2012, 1:17:34 PM (10 years ago)
Author:
Beman Dawes
Comment:

Add the bits about integrating with boost-root/libs and /boost

Legend:

Unmodified
Added
Removed
Modified
  • StartModDev

    v7 v8  
    3939
    4040 * With your web browser, sign into your [https://github.com GitHub] account and create a repository named {{{simple}}}. Select the option to automatically create a README file. Copy the URL of the newly created repository to your clipboard.
    41  * From the command line, {{{cd}}} to a directory suitable for experimentation, clone the newly created repository, and create the library's directory structure:
     41 * The remainder of the steps are run from the command line.
     42 * {{{cd}}} to the {{{libs}}} sub-directory of the Boost installation root directory, clone the newly created repository, and create the library's directory structure:
    4243{{{
     44cd boost-root/libs
    4345git clone git@github.com:Beman/simple.git
    4446cd simple
     
    5052mkdir simple
    5153}}}
     54 * Create a symlink to simulate your library being installed as part of Boost:
     55   * {{{cd boost}}}
     56   * Windows: {{{mklink /s simple ..\libs\simple\include\boost\simple}}}
     57   * POSIX: {{{ln -s ../libs/simple/include/boost/simple simple}}} 
    5258
    53  * Using a text editor, create a file named twice.hpp in simple/include/boost/simple:
     59 * Using a text editor, create a file named twice.hpp in boost-root/libs/simple/include/boost/simple:
    5460{{{
    5561#include <string>
     
    6268}}}
    6369
    64  * {{{cd}}} to simple/test. The remaining steps are done in that directory.
     70 * {{{cd}}} to  boost-root/libs/simple/test. The remaining steps are done in that directory.
    6571 * Create a file named twice_test.cpp using a text editor:
    6672{{{
     
    8187    ;
    8288}}}
    83 
     89 
    8490 * Run the test by invoking {{{b2}}} with no arguments. The output should look something like this:
    8591{{{