Changes between Version 25 and Version 26 of CMakeModularizationStatus
- Timestamp:
- Jan 8, 2012, 2:38:58 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CMakeModularizationStatus
v25 v26 2 2 3 3 = CMake Modularization Status = 4 5 4 6 5 All Boost libraries currently inhabit a [http://svn.boost.org/svn/boost single subversion repository]. … … 19 18 and distributes the updated files into separate [http://github.com/boost-lib per-library git repositories]. 20 19 As [https://github.com/ryppl/boost-modularize/commits you can see], the script is being kept 21 up-to-date by Daniel Pfeifer.20 up-to-date by [http://github.com/purpleKarrot Daniel Pfeifer]. 22 21 23 22 The 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 … … 45 44 # get the modularization script 46 45 git clone http://github.com/ryppl/boost-modularize 46 }}} 47 48 As 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 50 the sub-module URLs (e.g., replace git:// by http:// when you are behind a corporate firewall), 51 you have to replace the git submodule update --init by: 52 {{{ 53 #!sh 54 # Initialize the Git local configuration file 55 git submodule init 56 # Customize the sub-modules URLs in the .git/config file 57 vi .git/config 58 # Fetch all the data from the super-project and check out the appropriate commit listed in it (.gitmodules) 59 git submodule update --init # takes a couple of minutes 47 60 }}} 48 61