2021-02-12 22:11:11 +09:00
|
|
|
## Using cmake
|
|
|
|
|
|
|
|
> *Read this in other languages: [English](HowToSetProject-cmake.md), :kr: [한국어](HowToSetProject-cmake.ko.md)*
|
|
|
|
|
2021-03-07 18:15:54 +09:00
|
|
|
- Enter the command as shown below.
|
2021-02-12 22:11:11 +09:00
|
|
|
|
2021-03-07 18:15:54 +09:00
|
|
|
:one: Using MingW
|
2021-02-12 23:52:03 +09:00
|
|
|
|
|
|
|
- QXlsx library
|
2021-02-12 22:11:11 +09:00
|
|
|
|
|
|
|
```
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G "MinGW Makefiles" ..\QXlsx\
|
|
|
|
mingw32-make
|
|
|
|
```
|
|
|
|
|
2021-02-12 23:52:03 +09:00
|
|
|
- HelloWorld
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdir build2
|
|
|
|
cd build2
|
|
|
|
cmake -G "MinGW Makefiles" ..\HelloWorld\
|
|
|
|
mingw32-make
|
|
|
|
```
|
|
|
|
|
2021-03-07 18:15:54 +09:00
|
|
|
:two: Using Visual Studio
|
|
|
|
|
|
|
|
- QXlsx library (Release Build)
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G "Visual Studio 16 2019" ..\QXlsx\
|
|
|
|
MSBuild /nologo /t:Build /p:Configuration=Release QXlsx.vcxproj
|
|
|
|
```
|
|
|
|
|
|
|
|
- HelloWorld (Release Build)
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdir build2
|
|
|
|
cd build2
|
|
|
|
cmake -G "Visual Studio 16 2019" ..\HelloWorld\
|
|
|
|
MSBuild /nologo /t:Build /p:Configuration=Release HelloWorld.vcxproj
|
|
|
|
```
|
|
|
|
|
|
|
|
- Or, You may open *.sln/*.vcxproj files in Visual Studio IDE.
|
2021-02-12 23:52:03 +09:00
|
|
|
|
2021-02-12 22:11:11 +09:00
|
|
|
:three: Using Linux/Mac/Unix
|
|
|
|
|
2021-02-12 23:52:03 +09:00
|
|
|
- QXlsx library
|
|
|
|
|
2021-02-12 22:11:11 +09:00
|
|
|
```
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G "Unix Makefiles" ../QXlsx/
|
|
|
|
make
|
|
|
|
```
|
2021-02-12 23:52:03 +09:00
|
|
|
|
|
|
|
- HelloWorld
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdir build2
|
|
|
|
cd build2
|
2021-05-05 23:45:24 +09:00
|
|
|
cmake -G "Unix Makefiles" ../HelloWorld/
|
2021-02-12 23:52:03 +09:00
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
|