From f5d7994856b8f76a1315c30eed14194cc9eb316c Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 28 Sep 2001 09:57:24 -0400 Subject: [PATCH] make the include of the initial config flags optional, for builds that do not use configure --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9412e67fd..56ba971a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ SUBDIRS(Source Modules Templates) # Include the standard Dart testing module INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake) -INCLUDE (${CMAKE_BINARY_DIR}/Source/InitialConfigureFlags.cmake) +INCLUDE (OPTIONAL ${CMAKE_BINARY_DIR}/Source/InitialConfigureFlags.cmake) IF(CMAKE_CONFIGURE_INSTALL_PREFIX) SET(CMAKE_INSTALL_PREFIX ${CMAKE_CONFIGURE_INSTALL_PREFIX} ) ENDIF(CMAKE_CONFIGURE_INSTALL_PREFIX)