From 20e352ad9790220255cb8a9a3a42c1ce0887ce0b Mon Sep 17 00:00:00 2001 From: legrand Date: Wed, 19 Sep 2007 12:42:18 +0000 Subject: [PATCH] Changed cmake default build type for Windows compatibility git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@604 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/paradiseo-peo/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/paradiseo-peo/CMakeLists.txt b/trunk/paradiseo-peo/CMakeLists.txt index 6c3eb1926..87a8436f2 100644 --- a/trunk/paradiseo-peo/CMakeLists.txt +++ b/trunk/paradiseo-peo/CMakeLists.txt @@ -11,7 +11,7 @@ FIND_PROGRAM(XML2_CONFIG_PROGRAM NAMES xml2-config PATHS /usr/local/bin /usr/bin DOC "The libxml2 (www.xmlsoft.org) configuration tool") IF(NOT XML2_CONFIG_PROGRAM) - MESSAGE(FATAL_ERROR "Libxml2 cannot be found on your system. Libxml2 is required for ParadisEO-PEO install") + #MESSAGE(FATAL_ERROR "Libxml2 cannot be found on your system. Libxml2 is required for ParadisEO-PEO install") ENDIF(NOT XML2_CONFIG_PROGRAM) # set libxml2 cflags in XML2_CFLAGS @@ -120,7 +120,7 @@ ENDFOREACH (path ${REQUIRED_PATHS}) ##################################################################################### # the user should choose the build type on windows environments,excepted under cygwin (default=none) -SET(CMAKE_DEFAULT_BUILD_TYPE None CACHE STRING "Variable that stores the default CMake build type" FORCE) +SET(CMAKE_DEFAULT_BUILD_TYPE Debug CACHE STRING "Variable that stores the default CMake build type" FORCE) IF(WIN32 AND NOT CYGWIN) IF(NOT CMAKE_BUILD_TYPE)