Actions
Bug #1098
openHarmonize directory for installation of CMake files between Posix and Windows
Start date:
2023-12-13
Due date:
% Done:
0%
Estimated time:
Module:
CMake
Operating System:
Compiler:
Description
During installation (make install
), CMake creates and installs four files that are intended to allow a discovery of DCMTK from other CMake projects using find_package().
Currently, these files are installed in different locations on Posix and Windows platforms, for no obvious reason. The responsible code is in CMake/dcmtkPrepare.cmake
:
if(UNIX) set(DCMTK_INSTALL_CMKDIR "${CMAKE_INSTALL_LIBDIR}/cmake/dcmtk") elseif(WIN32) set(DCMTK_INSTALL_CMKDIR "cmake") endif()
This should be harmonized, probably using the Posix/Unix choice of directory.
Updated by Jörg Riesmeier over 1 year ago
- Target version changed from 3.7.1+ to 3.6.9
Updated by Jörg Riesmeier about 1 year ago
- Target version changed from 3.6.9 to 3.7.1+
Actions