* 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:11 +00:00
parent a67d6ecf63
commit 48d1487d7b
3 changed files with 6 additions and 6 deletions

View File

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

View File

@ -1,6 +1,6 @@
set ( htmlInstallDir /share/doc/en/html/kite ) set ( htmlInstallDir share/doc/en/html/kite )
set ( latexInstallDir /share/doc/en/latex/kite ) set ( latexInstallDir share/doc/en/latex/kite )
add_custom_target ( doc ALL cd ${KITE_SOURCE_DIR}/doc && ${DOXYGEN_EXECUTABLE} doxyfile ) add_custom_target ( doc ALL cd ${KITE_SOURCE_DIR}/doc && ${DOXYGEN_EXECUTABLE} doxyfile )

View File

@ -95,9 +95,9 @@
${OA_LIBRARIES} ${OA_LIBRARIES}
${Boost_LIBRARIES} ${Boost_LIBRARIES}
) )
install ( TARGETS kite DESTINATION /lib ) install ( TARGETS kite DESTINATION lib )
install ( TARGETS kite-text DESTINATION /bin ) install ( TARGETS kite-text DESTINATION bin )
install ( FILES ${includes} install ( FILES ${includes}
${mocIncludes} DESTINATION /include/coriolis/kite ) ${mocIncludes} DESTINATION include/coriolis/kite )