Changes between Version 18 and Version 19 of VincentTrial


Ignore:
Timestamp:
May 6, 2005, 4:34:58 PM (19 years ago)
Author:
garonne
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VincentTrial

    v18 v19  
    9090> cd cmt
    9191> more requirements
    92 package test
    93 application test hello.cxx main.cxx
     92package       test
     93author        Vincent Garonne <garonne@lal.in2p3.fr>
     94application   test hello.cxx main.cxx
    9495}}}
    9596Now we can compil and execute:
    9697{{{
    9798> cmt make
     99...
    98100> source setup.csh
    99101> ../Linux-i686/test.exe
    100102Hello le world !!!
    101103}}}
    102 Well done !!!
    103104
     105By default the executable has been put in the Linux-i687 directory.
    104106
     107== The library creation ==
     108
     109To create the hello library, it need to specify one more line in the requirements file.
     110{{{
     111> more requirements
     112package       test
     113author        Vincent Garonne <garonne@lal.in2p3.fr>
     114application   test hello.cxx main.cxx
     115library       hello hello.cxx
     116> cmt make
     117...
     118> ls ../Linux-i686/libhello.*
     119../Linux-i686/libhello.a  ../Linux-i686/libhello.so
     120}}}
     121
     122Two libraries has been built.
     123