File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
@ ECHO OFF
2
2
3
+ echo compiling bin\client.exe
4
+
3
5
cl.exe ^
4
6
/EHsc ^
7
+ /nologo ^
5
8
/Zi ^
6
9
/MD ^
7
10
/Ox ^
@@ -16,4 +19,7 @@ src\log.cpp ^
16
19
src\client\main.cpp ^
17
20
/Ithird_party\asio\asio\include ^
18
21
/Ithird_party\spdlog\include ^
19
- /Ithird_party\jsonserializer\include ^
22
+ /Ithird_party\jsonserializer\include
23
+
24
+ if %ERRORLEVEL% EQU 0 echo compile bin\client.exe successfully!
25
+ pause
Original file line number Diff line number Diff line change 1
1
@ ECHO OFF
2
2
3
+ echo compiling bin\server.exe...
4
+
3
5
cl.exe ^
4
6
/EHsc ^
7
+ /nologo ^
5
8
/Zi ^
6
9
/MD ^
7
10
/Ox ^
@@ -16,4 +19,7 @@ src\log.cpp ^
16
19
src\server\main.cpp ^
17
20
/Ithird_party\asio\asio\include ^
18
21
/Ithird_party\spdlog\include ^
19
- /Ithird_party\jsonserializer\include ^
22
+ /Ithird_party\jsonserializer\include
23
+
24
+ if %ERRORLEVEL% EQU 0 echo compile bin\server.exe successfully!
25
+ pause
You can’t perform that action at this time.
0 commit comments