Possibility to choose a project base dir
Brought to you by:
kommer
I would like to have my project arranged in a way,
where shared libs are compiled into
$PROJECT_ROOT/lib
and binaries into
$PROJECT_ROOT/bin
By default, acdkmake adds compiler flags to include
$ACDKHOME/bin to search path for libs
If you have your libs elsewhere(by setting BINDIR(cvs
version)),
compiler errors will occur...
Something like
myProject.setProjectDir("/home/mcr70/projects/myProject");
myProject.addLibDir("/home/mcr70/projects/other_project/lib/");
myProject.addIncludeDir("/home/mcr70/projects/other_project/include/");
And by default, executables are placed into
$myProject.projectdir/bin
and libs into
$myProject.projectdir/lib