1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00
QXlsx/HowToSetProject-cmake.md
2021-02-12 23:52:03 +09:00

49 lines
605 B
Markdown

## Using cmake
> *Read this in other languages: [English](HowToSetProject-cmake.md), :kr: [한국어](HowToSetProject-cmake.ko.md)*
:one: Enter the command as shown below.
:two: Using MingW
- QXlsx library
```
mkdir build
cd build
cmake -G "MinGW Makefiles" ..\QXlsx\
mingw32-make
```
- HelloWorld
```
mkdir build2
cd build2
cmake -G "MinGW Makefiles" ..\HelloWorld\
mingw32-make
```
:three: Using Linux/Mac/Unix
- QXlsx library
```
mkdir build
cd build
cmake -G "Unix Makefiles" ../QXlsx/
make
```
- HelloWorld
```
mkdir build2
cd build2
cmake -G "Unix Makefiles" ..\HelloWorld\
make
```