* 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:
parent
48d1487d7b
commit
d6f2a2ea22
|
@ -1 +1 @@
|
|||
install ( FILES FindEQUINOX.cmake DESTINATION /share/cmake_modules )
|
||||
install ( FILES FindEQUINOX.cmake DESTINATION share/cmake_modules )
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
add_library (intervalTree ${intervalTreeCpps} )
|
||||
target_link_libraries (intervalTree ${CORIOLIS_LIBRARIES}
|
||||
${HURRICANE_LIBRARIES} )
|
||||
install ( TARGETS equinox intervalTree DESTINATION /lib)
|
||||
install ( TARGETS equinox intervalTree DESTINATION lib)
|
||||
install ( FILES ${includes}
|
||||
${mocIncludes}
|
||||
${intervalTreeIncludes} DESTINATION /include/coriolis/equinox )
|
||||
${intervalTreeIncludes} DESTINATION include/coriolis/equinox )
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue