File tree Expand file tree Collapse file tree 2 files changed +47
-4
lines changed Expand file tree Collapse file tree 2 files changed +47
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
> * Read this in other languages: [ English] ( HowToSetProject-cmake.md ) , :kr : [ 한국어] ( HowToSetProject-cmake.ko.md ) *
4
4
5
- : one : 아래와 같은 명령어들읋 입력하세요.
5
+ - 다음과 같은 명령어들을 입력하세요.
6
6
7
- :two : MingW 사용하기
7
+ :one : MingW 사용하기
8
8
9
9
- QXlsx 라이브러리
10
10
@@ -24,6 +24,28 @@ cmake -G "MinGW Makefiles" ..\HelloWorld\
24
24
mingw32-make
25
25
```
26
26
27
+ :two : Visual Studio 사용하기
28
+
29
+ - QXlsx 라이브러리 (Release Build)
30
+
31
+ ```
32
+ mkdir build
33
+ cd build
34
+ cmake -G "Visual Studio 16 2019" ..\QXlsx\
35
+ MSBuild /nologo /t:Build /p:Configuration=Release QXlsx.vcxproj
36
+ ```
37
+
38
+ - HelloWorld (Release Build)
39
+
40
+ ```
41
+ mkdir build2
42
+ cd build2
43
+ cmake -G "Visual Studio 16 2019" ..\HelloWorld\
44
+ MSBuild /nologo /t:Build /p:Configuration=Release HelloWorld.vcxproj
45
+ ```
46
+
47
+ - 또는, * .sln/* .vcxproj 파일들을 Visual Studio IDE에서 열어도 됩니다.
48
+
27
49
:three : Linux/Mac/Unix 사용하기
28
50
29
51
- QXlsx 라이브러리
Original file line number Diff line number Diff line change 2
2
3
3
> * Read this in other languages: [ English] ( HowToSetProject-cmake.md ) , :kr : [ 한국어] ( HowToSetProject-cmake.ko.md ) *
4
4
5
- : one : Enter the command as shown below.
5
+ - Enter the command as shown below.
6
6
7
- :two : Using MingW
7
+ :one : Using MingW
8
8
9
9
- QXlsx library
10
10
@@ -24,6 +24,27 @@ cmake -G "MinGW Makefiles" ..\HelloWorld\
24
24
mingw32-make
25
25
```
26
26
27
+ :two : Using Visual Studio
28
+
29
+ - QXlsx library (Release Build)
30
+
31
+ ```
32
+ mkdir build
33
+ cd build
34
+ cmake -G "Visual Studio 16 2019" ..\QXlsx\
35
+ MSBuild /nologo /t:Build /p:Configuration=Release QXlsx.vcxproj
36
+ ```
37
+
38
+ - HelloWorld (Release Build)
39
+
40
+ ```
41
+ mkdir build2
42
+ cd build2
43
+ cmake -G "Visual Studio 16 2019" ..\HelloWorld\
44
+ MSBuild /nologo /t:Build /p:Configuration=Release HelloWorld.vcxproj
45
+ ```
46
+
47
+ - Or, You may open * .sln/* .vcxproj files in Visual Studio IDE.
27
48
28
49
:three : Using Linux/Mac/Unix
29
50
You can’t perform that action at this time.
0 commit comments