project(hello_project) {
// this tells mpc, that hello is an executable
exename = hello

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

// include the current directory and the ../include directory
includes += "."
includes += "../include"

// include the current directory in the lib path
libpaths = "."

Source_Files {
hello.cpp
}

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