Skip to the content.

cmake 사용하기

Read this in other languages: English, :kr: 한국어

:one: MingW 사용하기

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

:two: Visual Studio 사용하기

mkdir build
cd build
cmake -G "Visual Studio 16 2019" ..\QXlsx\
MSBuild /nologo /t:Build /p:Configuration=Release QXlsx.vcxproj
mkdir build2
cd build2
cmake -G "Visual Studio 16 2019" ..\HelloWorld\
MSBuild /nologo /t:Build /p:Configuration=Release HelloWorld.vcxproj 

:three: Linux/Mac/Unix 사용하기

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