From 012e123986e7fa9e807d168a7167c46e41f684d4 Mon Sep 17 00:00:00 2001 From: Wang Yu Date: Fri, 27 Feb 2026 17:17:53 +0800 Subject: [PATCH] fix: correct CMake option syntax for USE_PDFIUM_BUNDLE - Added missing description parameter to option() command to ensure proper default value handling. Log: correct CMake option syntax for USE_PDFIUM_BUNDLE --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0484b976..3a196f47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release") endif() # Option to use bundled PDFium -option(USE_PDFIUM_BUNDLE ON) +option(USE_PDFIUM_BUNDLE "Use bundled PDFium library instead of system version" ON) # 设置C++标准 set(CMAKE_CXX_STANDARD 17)