aboutsummaryrefslogtreecommitdiff
path: root/cmake/platform
diff options
context:
space:
mode:
authorclick <none@none>2010-08-28 21:42:07 +0200
committerclick <none@none>2010-08-28 21:42:07 +0200
commit3fa20f4cf340e9f28e450ba388b16f7849f07d11 (patch)
tree17a876afb4126b4f0c3cb08fbacf0790bf064ac8 /cmake/platform
parenta6d681b41cd22b64249d1d61e86cbf9260027dfe (diff)
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
Diffstat (limited to 'cmake/platform')
-rw-r--r--cmake/platform/settings.unix.cmake5
1 files changed, 4 insertions, 1 deletions
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)
-