@@ -16,20 +16,18 @@ Visit Labs64 NetLicensing at https://netlicensing.io
16
16
## Compatibility
17
17
18
18
### Notes:
19
-
20
19
- Building ** NetLicensing C++ client library** with static linking is currently not supported, feel free to contribute.
21
-
22
- - ** libcurl** version 7.64.0 was used for verified builds.
20
+ - Builds verified with ** libcurl** version 7.64.0 and ** cmake** version 3.13.4.
23
21
24
22
### Verified builds:
25
23
26
- Platform | Build toolset | Supported
27
- ------------ | ------------- | -------------
28
- Windows 7 | Visual studio 14 2015 x86 - x64 | : heavy_check_mark :
29
- Windows 7 | Visual studio 15 2017 x86 - x64 | : heavy_check_mark :
30
- Windows 10 | Visual studio 14 2015 x86 - x64 | : heavy_check_mark :
31
- Windows 10 | Visual studio 15 2017 x86 - x64| : heavy_check_mark :
32
- macOS Mojave | Xcode 10.1 | : heavy_check_mark :
24
+ Platform | Build toolset
25
+ ------------ | -------------
26
+ Windows 7 | Visual studio 14 2015 x86 - x64
27
+ Windows 7 | Visual studio 15 2017 x86 - x64
28
+ Windows 10 | Visual studio 14 2015 x86 - x64
29
+ Windows 10 | Visual studio 15 2017 x86 - x64
30
+ macOS Mojave | Xcode 10.1
33
31
34
32
## Windows build
35
33
@@ -38,9 +36,8 @@ macOS Mojave | Xcode 10.1 | :heavy_check_mark:
38
36
2 . ` cd curl_directory\winbuild `
39
37
3 . Read ` BUILD_WINDOWS.txt ` for building instructions
40
38
4 . In ** VC command prompt** :
41
- ```
42
- nmake /f Makefile.vc VC=<VC versions> MACHINE=<x86 or x64> ENABLE_WINSSL=<b>yes</b> MODE=<b>dll</b>
43
- ```
39
+ ``` nmake /f Makefile.vc VC=15 MACHINE=x64 ENABLE_WINSSL=yes MODE=dll ```
40
+ (replace ` VC ` and ` MACHINE ` with your actual version / platform)
44
41
5 . If you get the error ` U1073 ` or ` U1077 ` - execute ` curl_directory\buildconf.bat ` first and repeat the ` nmake ` command
45
42
6 . Your ` curl ` build directory will be in sub directory ` builds\ `
46
43
@@ -51,8 +48,9 @@ macOS Mojave | Xcode 10.1 | :heavy_check_mark:
51
48
4 . In ** VC command prompt** execute:
52
49
```
53
50
cd NetLicensingClient-cpp\build
54
- cmake .. -G "Visual Studio <VC versions> Win<86 or 64> " -DCMAKE_PREFIX_PATH=your_curl_build_directory
51
+ cmake .. -G "Visual Studio 15 2017 Win64 " -DCMAKE_PREFIX_PATH=your_curl_build_directory
55
52
```
53
+ (replace ` -G ` argument with your actual version / platform, see ` cmake ` documentation)
56
54
5 . Open solution created in ` NetLicensingClient-cpp\build ` directory in Visual Studio and build the library and demo client.
57
55
58
56
## Linux build
0 commit comments