From aef27cf6bfe2ddfdf3a723b311fc9674df695222 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Mon, 17 May 2010 21:19:20 +0000 Subject: [PATCH] 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. --- unicorn/src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unicorn/src/CMakeLists.txt b/unicorn/src/CMakeLists.txt index 54b4cbc4..6d0d1b58 100644 --- a/unicorn/src/CMakeLists.txt +++ b/unicorn/src/CMakeLists.txt @@ -58,7 +58,7 @@ ${QT_LIBRARIES} ${Boost_LIBRARIES} ) - install ( TARGETS unicorn DESTINATION lib ) + install ( TARGETS unicorn DESTINATION lib${LIB_SUFFIX} ) install ( TARGETS cgt DESTINATION bin ) install ( FILES ${includes} ${mocIncludes} DESTINATION include/coriolis/unicorn )