From 2eb33efe3bd5390a50e8e8b47292f3afa6a5f5b9 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 22 Feb 2019 08:40:31 +0100 Subject: [PATCH] [RFC] cmake: GENERATE_DOC=OFF It takes quite a while to build the docs (mostly due to the examples), so this is turning it off by default. --- awesomeConfig.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesomeConfig.cmake b/awesomeConfig.cmake index 8d903161b..7535add39 100644 --- a/awesomeConfig.cmake +++ b/awesomeConfig.cmake @@ -11,7 +11,7 @@ include(AutoOption.cmake) autoOption(WITH_DBUS "build with D-BUS") autoOption(GENERATE_MANPAGES "generate manpages") option(COMPRESS_MANPAGES "compress manpages" ON) -option(GENERATE_DOC "generate API documentation" ON) +option(GENERATE_DOC "generate API documentation" OFF) option(DO_COVERAGE "build with coverage" OFF) if (GENERATE_DOC AND DO_COVERAGE) message(STATUS "Not generating API documentation with DO_COVERAGE")