* 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
c61f191a61
commit
78b3108763
|
@ -1 +1 @@
|
|||
install ( FILES FindKNIK.cmake DESTINATION /share/cmake_modules )
|
||||
install ( FILES FindKNIK.cmake DESTINATION share/cmake_modules )
|
||||
|
|
|
@ -53,10 +53,10 @@
|
|||
add_library ( flute ${fluteCpps} )
|
||||
target_link_libraries ( flute ${CORIOLIS_LIBRARIES}
|
||||
${HURRICANE_LIBRARIES} )
|
||||
install ( TARGETS knik flute DESTINATION /lib)
|
||||
install ( TARGETS knik flute DESTINATION lib)
|
||||
|
||||
install ( FILES ${includes}
|
||||
${mocIncludes}
|
||||
${fluteIncludes} DESTINATION /include/coriolis/knik )
|
||||
${fluteIncludes} DESTINATION include/coriolis/knik )
|
||||
install ( FILES flute-2.4/etc/POST9.dat
|
||||
flute-2.4/etc/POWV9.dat DESTINATION /share/etc/flute-2.4 )
|
||||
flute-2.4/etc/POWV9.dat DESTINATION share/etc/flute-2.4 )
|
||||
|
|
Loading…
Reference in New Issue