Skip to content
Snippets Groups Projects
Jamfile 566 B
alias install : install-bin install-lib ;
explicit install ;

install install-bin : SetupTestApp
                 : <location>$(TOP)/bin
                   <install-dependencies>on 
                   <install-type>EXE
                   ;

install install-lib : Setup
                 : <location>$(TOP)/lib 
                   <install-dependencies>on 
                   <install-type>LIB
                   ;

project : ;

lib Setup : [ glob *.cc : *App.cc ] $(TOP)/Event//Event $(TOP)/DecayTree//DecayTree : : : ;

exe SetupTestApp : SetupTestApp.cc Setup : ;