diff options
author | Brad King <brad.king@kitware.com> | 2013-09-16 18:28:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-15 14:47:38 (GMT) |
commit | 277bd1db98194fe7b48627add4442e9b7a8207a7 (patch) | |
tree | 3a77d9cf12f239d93c0f0c8ffab82f2e79af1c8c /CMakeLists.txt | |
parent | 678aaad1336b9581889d7d219a2778b0b070a560 (diff) | |
download | CMake-277bd1db98194fe7b48627add4442e9b7a8207a7.zip CMake-277bd1db98194fe7b48627add4442e9b7a8207a7.tar.gz CMake-277bd1db98194fe7b48627add4442e9b7a8207a7.tar.bz2 |
Drop CMAKE_STRICT mode
With our modern development workflow it is less likely a property will
be added to C++ code without documentation. This mode only existed to
support the DocTest which had very limited coverage of the properties
anyway.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index eb515d7..620b5d8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -536,10 +536,6 @@ configure_file( "${CMAKE_CURRENT_BINARY_DIR}/DartLocal.conf" COPYONLY) -option(CMAKE_STRICT - "Perform strict testing to record property and variable access. Can be used to report any undefined properties or variables" OFF) -mark_as_advanced(CMAKE_STRICT) - if(NOT CMake_VERSION_IS_RELEASE) if("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" AND NOT "${CMAKE_C_COMPILER_VERSION}" VERSION_LESS 4.2) |