Changes between Version 3 and Version 4 of VincentTrial3


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

--

Legend:

Unmodified
Added
Removed
Modified
  • VincentTrial3

    v3 v4  
    7272}}}
    7373
     74We now have to setup all CMT setups for the package depencies and project definition.
     75This is defined within the packages requirements file and the project file:
     76{{{
     77> more  A/v1/cmt/requirements
     78package A
     79
     80author Vincent Garonne <garonne@lal.in2p3.fr>
     81
     82library A A.cxx
     83
     84macro A_linkopts " -lA "
     85> more  B/v1/cmt/requirements
     86package B
     87
     88author Vincent Garonne <garonne@lal.in2p3.fr>
     89
     90use A v1
     91
     92# COMMENT: the order of the statements is important for the creation
     93# here that means that the library is compiled before the main program
     94# otherwise it doesn't work  :-( .
     95library B B.cxx
     96
     97application main main.cxx
     98
     99macro B_linkopts "  -lB "
     100> more cmt/project.cmt
     101project project
     102
     103build_strategy with_installarea
     104}}}
     105
     106
    74107{{{
    75108> cd B/v1/cmt