Fix a typo and move ensure_out_of_source_build above the macros.

This commit is contained in:
Andreas Schneider 2008-03-03 10:18:59 +01:00
Родитель 2dbba9d1f8
Коммит 2d52e459bb
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -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)