From 4304148904fede8d68915862189e59a361cf4bcf Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Tue, 19 Feb 2019 09:51:23 +0000 Subject: [PATCH] Turn docs off by default Fixes #20 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 63720f6..c4aae8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0) project(optional) option(OPTIONAL_ENABLE_TESTS "Enable tests." ON) -option(OPTIONAL_ENABLE_DOCS "Enable documentation." ON) +option(OPTIONAL_ENABLE_DOCS "Enable documentation." OFF) add_library(optional INTERFACE) target_sources(optional INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/tl/optional.hpp)