|
1
|
The pre-made Visual Studio projects have been removed in lieu of the ability to |
|
2
|
use cmake to build such projects on demand. |
|
3
|
|
|
4
|
To create a Visual Studio project |
|
5
|
--------------------------------- |
|
6
|
|
|
7
|
1. Start cmake-gui. |
|
8
|
2. Point source-dir to the source. |
|
9
|
3. Point build-dir to the dir where you want to build. |
|
10
|
4. Hit configure -- there you can select details. |
|
11
|
5. Select the options you want, which are shown with descriptions after the |
|
12
|
configure run is complete. |
|
13
|
6. Hit configure again to assure that everything that is needed is found. |
|
14
|
7. For those not found, deactivate the option or install the dependency, e.g. |
|
15
|
bzip2 for minizip, and go back to step 6 until there is no red. |
|
16
|
8. Hit generate. |
|
17
|
9. Hit open project. |
|
18
|
|
|
19
|
Now you can Build > Build solution. |
|
20
|
|
|
21
|
|
|
22
|
See contrib/zlib1-dll/readme.txt for how to build the legacy zlib1.dll. |
|
23
|
|