Adds LIB_SUFFIX to all CMakeLists install "lib" targets, so that 64 bits

libraries gets installed in "lib64" instead of "lib".

buildCoriolis.py sets automatically LIB_SUFFIX for cmake.
coriolis2.spec modificated to uses lib64 on 64 bits.
This commit is contained in:
Jean-Paul Chaput 2010-05-17 21:19:16 +00:00
parent 18e534f73a
commit 6626ad4128
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@
add_library (intervalTree ${intervalTreeCpps} ) add_library (intervalTree ${intervalTreeCpps} )
target_link_libraries (intervalTree ${CORIOLIS_LIBRARIES} target_link_libraries (intervalTree ${CORIOLIS_LIBRARIES}
${HURRICANE_LIBRARIES} ) ${HURRICANE_LIBRARIES} )
install ( TARGETS equinox intervalTree DESTINATION lib) install ( TARGETS equinox intervalTree DESTINATION lib${LIB_SUFFIX} )
install ( FILES ${includes} install ( FILES ${includes}
${mocIncludes} ${mocIncludes}
${intervalTreeIncludes} DESTINATION include/coriolis/equinox ) ${intervalTreeIncludes} DESTINATION include/coriolis/equinox )