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

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

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

project : 
	;

lib Particle : [ glob *.cc : *App.cc ] $(TOP)/Utils//Utils $(TOP)/ErrLogger//ErrLogger : : : ;

exe PdtTestApp : PdtTestApp.cc Particle : ;