From 3fa20f4cf340e9f28e450ba388b16f7849f07d11 Mon Sep 17 00:00:00 2001 From: click Date: Sat, 28 Aug 2010 21:42:07 +0200 Subject: Buildsystem: Make options load BEFORE platformchecks, so they are preloaded correctly + add some more output to make it easier to find possible issues with the new layout --HG-- branch : trunk --- cmake/platform/settings.unix.cmake | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cmake/platform/settings.unix.cmake') diff --git a/cmake/platform/settings.unix.cmake b/cmake/platform/settings.unix.cmake index 6751f43b367..9dae9f5ca9f 100644 --- a/cmake/platform/settings.unix.cmake +++ b/cmake/platform/settings.unix.cmake @@ -1,11 +1,13 @@ # set default configuration directory if( NOT CONF_DIR ) set(CONF_DIR ${CMAKE_INSTALL_PREFIX}/etc) + message(STATUS "UNIX: Using default configuration directory") endif() # set default library directory if( NOT LIBSDIR ) set(LIBSDIR ${CMAKE_INSTALL_PREFIX}/lib) + message(STATUS "UNIX: Using default library directory") endif() # configure uninstaller @@ -14,11 +16,12 @@ configure_file( "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY ) +message(STATUS "UNIX: Configuring uninstall target") # create uninstaller target (allows for using "make uninstall") add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" ) +message(STATUS "UNIX: Created uninstall target") include(${CMAKE_SOURCE_DIR}/cmake/compiler/gcc/settings.cmake) - -- cgit v1.2.3