You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You are talking about the Dockerfile? Changing the base image? I am sometimes running into problems with cmake`s finding of installed packages - because I don't understand the mechanism...
No no. I'm compiling it on a Fedora host, Docker is not involved.
And instead of downloading GDCM sources, I install the gdcm-devel package from the distribution repository.
So, if I modify the file CMakeLists.txt getting rid of the references to the GDCM source directory, cmake seems to work with the development package shipped by the Linux Distribution.
FIND_PACKAGE(GDCM REQUIRED)
if(GDCM_FOUND)
message(STATUS Found GDCM)
include(${GDCM_USE_FILE})
endif(GDCM_FOUND)
and removing all the references to GDCM directories, it builds successfully using the gdcm devel packages shipped by the distribution (at least on Fedora).
Hello.
For instance on Fedora.
sudo dnf install gdcm-devel
Then in
CMakeLists.txt
should work, isn't it?
The text was updated successfully, but these errors were encountered: