This is kind of wacky, and once again I am being thwarted by doing something never done before:
I have the DCMTK install working almost 100%. The not-working part: If you build in ITK, the DCMTK libraries are added with ADD_LIBRARY(libname STATIC imported). Within an ITK build -- i.e. when the test program for ITKDCMTKImageIO is built -- CMake is smart enough to replace the import library name (e.g. ITKDCMTK_data) with the actual path of the library. But when the *.cmake files are created for an ITK install, they don't distinguish between an imported library target and a local library target. ITK_LIBRARIES contains the library's import name (e.g. ITKDCMTK_data) instead of the actual library name (e.g. libdcmdata.a). I'm sure what this comes down to is changing how the ITK CMake files are configured. The IMPORTED_LINK_INTERFACE_LIBRARIES property needs to be checked. But I don't know where exactly to do this. -- Kent Williams [email protected] ________________________________ Notice: This UI Health Care e-mail (including attachments) is covered by the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521, is confidential and may be legally privileged. If you are not the intended recipient, you are hereby notified that any retention, dissemination, distribution, or copying of this communication is strictly prohibited. Please reply to the sender that you have received the message in error, then delete it. Thank you. ________________________________ _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://www.itk.org/mailman/listinfo/insight-developers
