Skip to content

Commit f61a136

Browse files
authored
minor fixed in README.md
1 parent 1098908 commit f61a136

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

README.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,18 @@ Visit Labs64 NetLicensing at https://netlicensing.io
1616
## Compatibility
1717

1818
### Notes:
19-
2019
- 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.
2321

2422
### Verified builds:
2523

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
3331

3432
## Windows build
3533

@@ -38,9 +36,8 @@ macOS Mojave | Xcode 10.1 | :heavy_check_mark:
3836
2. `cd curl_directory\winbuild`
3937
3. Read `BUILD_WINDOWS.txt` for building instructions
4038
4. In **VC command prompt**:
41-
```
42-
nmake /f Makefile.vc VC=&#60;VC versions&#62; MACHINE=&#60;x86 or x64&#62; 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)
4441
5. If you get the error `U1073` or `U1077` - execute `curl_directory\buildconf.bat` first and repeat the `nmake` command
4542
6. Your `curl` build directory will be in sub directory `builds\`
4643

@@ -51,8 +48,9 @@ macOS Mojave | Xcode 10.1 | :heavy_check_mark:
5148
4. In **VC command prompt** execute:
5249
```
5350
cd NetLicensingClient-cpp\build
54-
cmake .. -G "Visual Studio <VC versions> Win&#60;86 or 64&#62;" -DCMAKE_PREFIX_PATH=your_curl_build_directory
51+
cmake .. -G "Visual Studio 15 2017 Win64" -DCMAKE_PREFIX_PATH=your_curl_build_directory
5552
```
53+
(replace `-G` argument with your actual version / platform, see `cmake` documentation)
5654
5. Open solution created in `NetLicensingClient-cpp\build` directory in Visual Studio and build the library and demo client.
5755

5856
## Linux build

0 commit comments

Comments
 (0)