1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
QXlsx/HowToSetProject-cmake.md
2021-02-12 22:11:11 +09:00

375 B
Raw Blame History

Using cmake

Read this in other languages: English, 🇰🇷 한국어

1 Enter the command as shown below.

2 Using Mingw

mkdir build
cd build
cmake -G "MinGW Makefiles" ..\QXlsx\
mingw32-make

3 Using Linux/Mac/Unix

mkdir build
cd build
cmake -G "Unix Makefiles" ../QXlsx/
make