Administrator
发布于 2026-05-20 / 4 阅读
0

C++三方库配置说明

1 OpenXLSX

github下载地址

1.1 配置

# x86平台
cmake -S. -B build -DCMAKE_INSTALL_PREFIX="D:/open" -G "Visual Studio 16 2019" -A Win32
# x64平台
cmake -S. -B build -DCMAKE_INSTALL_PREFIX="D:/open" 

1.2 编译

# Debug
cmake --build build --config Debug
# Release
cmake --build build --config Release 

1.3 安装

# Debug
cmake --install build --config Debug
# Release
cmake --install build --config Release