We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently done through DevStudio edit dialog checkbox, should be internal to build process
Should be done in CMake, by using set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${_META_PATH})
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${_META_PATH})
But underlying problem of configure from build that does not recognize macro OPENFLUID_ADD_WAREPLUGIN
OPENFLUID_ADD_WAREPLUGIN
Potentially related with OpenFLUID_DIR that would be wrong at configure or build step (pointing to non-existing dir)
OpenFLUID_DIR
CMakeLists.txt of a ware to investigate OpenFLUID_DIR, check with and without CACHE var
CMakeLists.txt
set(OpenFLUID_DIR "${OpenFLUID_DIR}" CACHE PATH "Path to FOO_DIR") MESSAGE(STATUS "OpenFLUID_DIR: ${OpenFLUID_DIR}") #INCLUDE("${OpenFLUID_DIR}/../openfluid/cmake/OpenFLUIDHelpers.cmake") INCLUDE("${OpenFLUID_DIR}/OpenFLUIDHelpers.cmake")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently done through DevStudio edit dialog checkbox, should be internal to build process
Should be done in CMake, by using
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${_META_PATH})
But underlying problem of configure from build that does not recognize macro
OPENFLUID_ADD_WAREPLUGIN
Potentially related with
OpenFLUID_DIR
that would be wrong at configure or build step (pointing to non-existing dir)Appendix
CMakeLists.txt
of a ware to investigateOpenFLUID_DIR
, check with and without CACHE varThe text was updated successfully, but these errors were encountered: