Parcourir la source

cmake: Fix wrong name of option

Xenofon Karamanos il y a 4 mois
Parent
commit
f9bbac5167
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      cmake/dbschema.cmake

+ 2 - 2
cmake/dbschema.cmake

@@ -19,8 +19,8 @@ else()
     add_custom_target(dbschema_clean COMMENT "Cleaning schemas for all dbs...")
   endif()
 
-  option(XSLT_VALIDATE, "Enable schema validation during XSL transformations" ON)
-  option(XSLT_VERBOSE, "Enable verbose output for XSL transformations" OFF)
+  option(XSLT_VALIDATE "Enable schema validation during XSL transformations" ON)
+  option(XSLT_VERBOSE "Enable verbose output for XSL transformations" OFF)
 
   set(XSLTPROC_FLAGS --xinclude)
   if(NOT ${XSLT_VALIDATE})