From 773edc19b47805233d18606a35b6efa9d1f7e71f Mon Sep 17 00:00:00 2001 From: bitscher Date: Wed, 31 Aug 2022 10:45:33 -0700 Subject: [PATCH] Disable Doxygen in CMake dependencies Reduces the verbosity of the cubeb dependency build (and saves a bit of processing time and disk space) [10/484] Generating API documentation with Doxygen /root/cemu/dependencies/cubeb/include/cubeb/cubeb.h:188: warning: Member cubeb_channel_layout (typedef) of file cubeb.h is not documented. /root/cemu/dependencies/cubeb/include/cubeb/cubeb.h:166: warning: Member cubeb_channel (enumeration) of file cubeb.h is not documented. /root/cemu/dependencies/cubeb/include/cubeb/cubeb.h:436: warning: argument 'user' of command @param is not found in the argument list of cubeb_device_changed_callback(void *user_ptr) /root/cemu/dependencies/cubeb/include/cubeb/cubeb.h:437: warning: The following parameter of cubeb_device_changed_callback(void *user_ptr) is not documented: parameter 'user_ptr' --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f7ee45a..c589f9f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.21.1) option(PUBLIC_RELEASE "Compile with debug asserts disabled and no console" OFF) option(ENABLE_VCPKG "Enable the vcpkg package manager" ON) +option(CMAKE_DISABLE_FIND_PACKAGE_Doxygen "Disable Doxygen in dependencies" TRUE) set(EXPERIMENTAL_VERSION "" CACHE STRING "") # used by CI script to set experimental version if (PUBLIC_RELEASE)