From 2d52e459bb6b12173ecf1a63701c3716575618e7 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 3 Mar 2008 10:18:59 +0100 Subject: [PATCH] Fix a typo and move ensure_out_of_source_build above the macros. --- CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e39c93bc5..605158e17 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,9 +16,12 @@ include(DefineInstallationPaths) include(DefineOptions.cmake) +# disallow in-source build +include(MacroEnsureOutOfSourceBuild) +macro_ensure_out_of_source_build("${PROJECT_NAME} requires an out of source build. Please create a separate build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there.") + # add macros include(MacroAddPlugin) -include(MacroEnsureOutOfSourceBuild) include(MacroAddCheckTest) if (WITH_LOG4C) @@ -29,8 +32,6 @@ find_package(Check) include(ConfigureChecks.cmake) configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h) -# disallow in-source build -macro_ensure_out_of_source_build("libcsync requires an out of source build. Please create a separate build directory and run 'cmake path_to_wengophone [options]' there.") add_subdirectory(iniparser/src) add_subdirectory(src)