Hello everyone!
I am trying to add an external project to ParaView Superbuild and I am having some difficulty due to the project layout. I have created a project file projects/unix/<name>.cmake
and added the project to versions.cmake
.
The project has a makefile that is located within a “src” subdirectory of the project, i.e. it gets extracted to superbuild/<name>/src/src/Makefile
. The project does not support out of source builds.
How can I add a project to paraview superbuild using the superbuild_add_project command so that it will work with this my project layout? Is there a way to set the working/build directory to superbuild/<name>/src/src
? Or is there a way to do cd src
before running make
in the BUILD_COMMAND?
Thanks everyone!