forked from mailru/icqdesktop.deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.CMAKE.txt
36 lines (24 loc) · 950 Bytes
/
README.CMAKE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
How to build with CMake on Windows
----------------------------------
From the root of project directory:
mkdir build
cd build
You can build project with Visual Studio 2017 or with NMake
Visual Studio 2017:
cmake .. -G "Visual Studio 15 2017" -T "v141_xp" -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug)
Open build\icq.sln and build
NMake:
cmake .. -G "NMake Makefiles" -T "v110_xp" -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug)
nmake
How to build with CMake on MacOS
--------------------------------
From the root of project directory:
mkdir build
cd build
You can build project with Xcode or with make
XCode:
cmake .. -G Xcode -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug)
Open build\icq.xcodeproj and build
make:
cmake .. -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug)
make