Changes between Version 25 and Version 26 of CMakeModularizationStatus


Ignore:
Timestamp:
Jan 8, 2012, 2:38:58 PM (11 years ago)
Author:
Denis Arnaud
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CMakeModularizationStatus

    v25 v26  
    22
    33= CMake Modularization Status =
    4 
    54
    65All Boost libraries currently inhabit a [http://svn.boost.org/svn/boost single subversion repository].
     
    1918and distributes the updated files into separate [http://github.com/boost-lib per-library git repositories].
    2019As [https://github.com/ryppl/boost-modularize/commits you can see], the script is being kept
    21 up-to-date by Daniel Pfeifer.
     20up-to-date by [http://github.com/purpleKarrot Daniel Pfeifer].
    2221
    2322The column labelled “Boost.Modularize” on the right side of the [http://bbot.boostpro.com/waterfall?show_events=true&builder=Boost.Modularize-x-Modularize&builder=Boost-vc8-win64-Integration&builder=Boost-vc7.1-win64-Integration&builder=Boost-gcc-linux-Integration&builder=Boost-vc10-win64-Integration&builder=Boost-vc9-win64-Integration&reload=none automated test page] shows the modularization
     
    4544# get the modularization script
    4645git clone http://github.com/ryppl/boost-modularize
     46}}}
     47
     48As a reference on Git sub-modules, see also the corresponding section in the
     49[http://progit.org/book/ch6-6.html Pro Git book]. For instance, if you intend to customize
     50the sub-module URLs (e.g., replace git:// by http:// when you are behind a corporate firewall),
     51you have to replace the git submodule update --init by:
     52{{{
     53#!sh
     54# Initialize the Git local configuration file
     55git submodule init
     56# Customize the sub-modules URLs in the .git/config file
     57vi .git/config
     58# Fetch all the data from the super-project and check out the appropriate commit listed in it (.gitmodules)
     59git submodule update --init                     # takes a couple of minutes
    4760}}}
    4861