Convert CMake variables from YES/NO to ON/OFF

This commit is contained in:
Matt Williams
2012-07-15 21:14:37 +01:00
parent 2b5024591e
commit d7fc289035
3 changed files with 6 additions and 6 deletions

View File

@ -67,9 +67,9 @@ ENDIF(ENABLE_TESTS)
#Check if we will building _and_ bundling the docs
IF(DOXYGEN_FOUND AND QT_QCOLLECTIONGENERATOR_EXECUTABLE)
SET(BUILD_AND_BUNDLE_DOCS YES)
SET(BUILD_AND_BUNDLE_DOCS ON)
ELSE()
SET(BUILD_AND_BUNDLE_DOCS NO)
SET(BUILD_AND_BUNDLE_DOCS OFF)
ENDIF()
ADD_SUBDIRECTORY(documentation)