project(hello_sailor_project) {
// depends upon the hello_dll_project
after += hello_dll_project

// this tells mpc, that hello is an executable
exename = hello_sailor

// this tells mps where to put the executable
install = ../bin

// look for .h files here
includes += "../include"

// link to these libraries
libs += hello_shared

// look here for libraries
specific(make) {
libpaths += "/usr/local/cvs-user/lib"
}
specific(vc8,nmake) {
libpaths += ../bin
}

Source_Files {
hello_sailor.cpp
}

Header_Files {
../include/hello.h
}
}