Changes between Version 2 and Version 3 of VincentTrial2


Ignore:
Timestamp:
May 11, 2005, 3:57:51 PM (19 years ago)
Author:
garonne
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VincentTrial2

    v2 v3  
    33
    44We illustrate here a simple example of package dependency.
    5 We show how CMT deals with a package dependency between
    6 the package A and B.
     5We show how CMT deals with a package dependency between package A and B.
    76
    87First we create a directory:
     
    115114application main main.cxx B.cxx
    116115}}}
    117 The line "use A v1" says explicitely that package B need pacckage A version 1.
     116The line "use A v1" says explicitely that package B needs package A version 1.
    118117The line "application  main main.cxx B.cxx" annouces to CMT that a program must be created and for this creation,
    119 we need the file main.cxx and B.cxx.
     118we need the files main.cxx and B.cxx.
    120119
    121120Then to construct the main program with CMT, we first need to give a way to localize the package A.
     
    127126> echo $CMTPATH ~garonne/tmp
    128127}}}
    129 We can see also all the package depencies by the command:
     128We can see also all the package dependencies by the command:
    130129{{{
    131130> cd B/v1/cmt
     
    195194}}}
    196195The B library should be also create.
    197 
    198 
    199 
    200 
    201 }}}
    202 
    203