* 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
3600d6becd
commit
53e9b7154d
|
@ -1 +1 @@
|
||||||
install ( FILES FindUNICORN.cmake DESTINATION /share/cmake_modules )
|
install ( FILES FindUNICORN.cmake DESTINATION share/cmake_modules )
|
||||||
|
|
|
@ -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 )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue