From b24d8822ef1f95741f2a6849a73fcbe55e45d709 Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Wed, 22 Jan 2025 21:05:26 +0100 Subject: [PATCH] Build: Add config print for WITH_AUDASPACE and WITH_OPENSUBDIV This commit adds two entries into the "Build Options:" CMake print to assist in verifying configuration both locally and on the buildbot. Pull Request: https://projects.blender.org/blender/blender/pulls/133409 --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7153b6340e5..4829b599412 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2739,6 +2739,7 @@ if(FIRST_RUN) info_cfg_option(WITH_OPENCOLLADA) info_cfg_option(WITH_OPENCOLORIO) info_cfg_option(WITH_OPENIMAGEDENOISE) + info_cfg_option(WITH_OPENSUBDIV) info_cfg_option(WITH_OPENVDB) info_cfg_option(WITH_POTRACE) info_cfg_option(WITH_PUGIXML) @@ -2781,6 +2782,7 @@ if(FIRST_RUN) info_cfg_option(WITH_IMAGE_OPENJPEG) info_cfg_text("Audio:") + info_cfg_option(WITH_AUDASPACE) info_cfg_option(WITH_CODEC_FFMPEG) info_cfg_option(WITH_CODEC_SNDFILE) info_cfg_option(WITH_COREAUDIO)