* All tools:

- Change: In the CMakeLists.txt, in all the install commands remove all
        the leading "/" as they prevents the CMAKE_INSTALL_PREFIX to be took
        into account. It was nevertheless working because buildCoriolis.py was
        using DESTDIR which is prepended anyway.
  * ./goodies:
    - Change: In buildCoriolis.py, no longer uses the DESTDIR but instead
        CMAKE_INSTALL_PREFIX.
This commit is contained in:
Jean-Paul Chaput 2010-05-16 16:34:20 +00:00
parent 3600d6becd
commit 53e9b7154d
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
install ( FILES FindUNICORN.cmake DESTINATION /share/cmake_modules ) install ( FILES FindUNICORN.cmake DESTINATION share/cmake_modules )

View File

@ -58,8 +58,8 @@
${QT_LIBRARIES} ${QT_LIBRARIES}
${Boost_LIBRARIES} ${Boost_LIBRARIES}
) )
install ( TARGETS unicorn DESTINATION /lib) install ( TARGETS unicorn DESTINATION lib )
install ( TARGETS cgt DESTINATION /bin ) install ( TARGETS cgt DESTINATION bin )
install ( FILES ${includes} install ( FILES ${includes}
${mocIncludes} DESTINATION /include/coriolis/unicorn ) ${mocIncludes} DESTINATION include/coriolis/unicorn )