Changes between Version 6 and Version 7 of VincentTrial3


Ignore:
Timestamp:
May 12, 2005, 4:54:27 PM (19 years ago)
Author:
garonne
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VincentTrial3

    v6 v7  
    1616}}}
    1717
    18 The codes for A and B is the same than in our previous example, so:
     18The codes for A and B are the same than in our previous example, so:
    1919{{{
    2020> more A/v1/src/A.h
     
    133133B
    134134}}}
     135
     136== REMARK ==
     137
     138We can directly create all the packages inside the project. For this we do a container which is a empty package containing only a requirements file:
     139{{{
     140> cmt create container v1
     141...
     142> more  container/v1/cmt/requirements
     143package container
     144use A v1
     145use B v1
     146> more cmt/project.cmt
     147project project
     148
     149container container v1
     150
     151build_strategy with_installarea
     152> cd container/v1/cmt/
     153> cmt broadcast make
     154...
     155> source setup.csh
     156> main.exe
     157A
     158B
     159}}}
     160