[Insight-developers] Wrong install path in double-conversion
Vladimir, Chalupecky
chalupecky at jp.fujitsu.com
Wed Mar 27 02:06:43 EDT 2013
Hello,
The double-conversion library is installed to ${CMAKE_INSTALL_PREFIX}/lib/lib which is probably not right. This is due to the following lines in Modules/ThirdParty/DoubleConversion/src/double-conversion/CMakeLists.txt
LIBRARY DESTINATION "${DOUBLECONVERSION_INSTALL_LIB_DIR}/lib" COMPONENT Libraries
ARCHIVE DESTINATION "${DOUBLECONVERSION_INSTALL_LIB_DIR}/lib" COMPONENT Development)
which should be just
LIBRARY DESTINATION "${DOUBLECONVERSION_INSTALL_LIB_DIR}" COMPONENT Libraries
ARCHIVE DESTINATION "${DOUBLECONVERSION_INSTALL_LIB_DIR}" COMPONENT Development)
Cheers,
Vladimir
More information about the Insight-developers
mailing list