1 OpenXLSX
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