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
I am currently working to upgrade the Debian package of python-casacore to 3.6.1, which comes with a new, CMake supported build system. The problem I found here is that on Debian,
the header files of casacore are placed in /usr/lib/include/casacore/
the library files (symlinks) are in /usr/lib/x86_64-linux-gnu/
one can only set a common variable for both includes and headers, which would not work here.
The wcslib and cfitsio packages however (which have a similar structure) are found; so maybe one could re-use a bit this way here as well. Also BLAS and LAPACK.
The text was updated successfully, but these errors were encountered:
Thanks for packaging! The FindCasacore.cmake module indeed could use modernization. But somehow, for me this just works, on a fresh debian sid with your casacore-dev 3.6.1, with the master of python-casacore:
I'm also a bit confused. If I follow the link https://packages.debian.org/sid/amd64/casacore-dev/filelist, I see a list of header files in /usr/include, right where you'd expect them, not in /usr/lib/include. If python-casacore fails to find casacore, it may help to set CMAKE_PREFIX_PATH to the install directory of casacore. That, however, should not be necessary if casacore is installed in one of the system default paths.
I am currently working to upgrade the Debian package of python-casacore to 3.6.1, which comes with a new, CMake supported build system. The problem I found here is that on Debian,
/usr/lib/include/casacore/
/usr/lib/x86_64-linux-gnu/
See https://packages.debian.org/sid/amd64/casacore-dev/filelist for the list of files in the development package.
From
python-casacore/cmake/FindCasacore.cmake
Lines 18 to 21 in db14e98
The wcslib and cfitsio packages however (which have a similar structure) are found; so maybe one could re-use a bit this way here as well. Also BLAS and LAPACK.
The text was updated successfully, but these errors were encountered: