From e4e552f912e8485118a829a260de4cd365cedf3e Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Tue, 18 May 2010 12:53:12 +0000 Subject: [PATCH] * All tools: - Change: adopt a tree layout compliant with the UNIX FHS. * includes under TOP/include/coriolis2. * shared datas under TOP/shared/coriolis2. * docs under TOP/share/doc/coriolis2. * configuration under TOP/etc/coriolis2 * ./crlcore: - Change: In Environment, comply to the new tree layout, search configuration files under TOP/etc/coriolis2/. * ./knik: - Change: In flute, comply to the new tree layout, get the "POW*.dat" files from TOP/share/coriolis2/flute-2.4. --- equinox/CMakeLists.txt | 4 ++-- equinox/cmake_modules/CMakeLists.txt | 2 +- equinox/src/CMakeLists.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/equinox/CMakeLists.txt b/equinox/CMakeLists.txt index 592534b7..1451aa9e 100644 --- a/equinox/CMakeLists.txt +++ b/equinox/CMakeLists.txt @@ -10,13 +10,13 @@ ENDIF(COMMAND CMAKE_POLICY) MACRO(SETUP_PROJECT_PATHS project) IF( NOT("$ENV{${project}_TOP}" STREQUAL "") ) MESSAGE("-- ${project}_TOP is set to $ENV{${project}_TOP}") - SET(PROJECT_MODULE_PATH "$ENV{${project}_TOP}/share/cmake_modules/") + SET(PROJECT_MODULE_PATH "$ENV{${project}_TOP}/share/cmake/Modules/") LIST(INSERT CMAKE_MODULE_PATH 0 "${PROJECT_MODULE_PATH}") ENDIF( NOT("$ENV{${project}_TOP}" STREQUAL "") ) IF( NOT("$ENV{${project}_USER_TOP}" STREQUAL "") ) MESSAGE("-- ${project}_USER_TOP is set to $ENV{${project}_USER_TOP}") - SET(PROJECT_MODULE_PATH "$ENV{${project}_USER_TOP}/share/cmake_modules/") + SET(PROJECT_MODULE_PATH "$ENV{${project}_USER_TOP}/share/cmake/Modules/") LIST(INSERT CMAKE_MODULE_PATH 0 "${PROJECT_MODULE_PATH}") ENDIF( NOT("$ENV{${project}_USER_TOP}" STREQUAL "") ) diff --git a/equinox/cmake_modules/CMakeLists.txt b/equinox/cmake_modules/CMakeLists.txt index 09514ab4..24bae284 100644 --- a/equinox/cmake_modules/CMakeLists.txt +++ b/equinox/cmake_modules/CMakeLists.txt @@ -1 +1 @@ -install ( FILES FindEQUINOX.cmake DESTINATION share/cmake_modules ) +install ( FILES FindEQUINOX.cmake DESTINATION share/cmake/Modules ) diff --git a/equinox/src/CMakeLists.txt b/equinox/src/CMakeLists.txt index cb404b53..acce494c 100644 --- a/equinox/src/CMakeLists.txt +++ b/equinox/src/CMakeLists.txt @@ -50,6 +50,6 @@ install ( TARGETS equinox intervalTree DESTINATION lib${LIB_SUFFIX} ) install ( FILES ${includes} ${mocIncludes} - ${intervalTreeIncludes} DESTINATION include/coriolis/equinox ) + ${intervalTreeIncludes} DESTINATION include/coriolis2/equinox )