Turn docs off by default

Fixes #20
This commit is contained in:
Simon Brand
2019-02-19 09:51:23 +00:00
parent 5d3d6c399a
commit 4304148904

View File

@ -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)