Skip to content

Commit e2b9afd

Browse files
Remove 'work-in-progress' and align build commands style
Remove 'work-in-progress'. Align used build commands from 'make' to more generic 'cmake --build'. Resolves: OLPEDGE-1082 Signed-off-by: Diachenko Mykahilo <[email protected]>
1 parent ad7fcd1 commit e2b9afd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HERE OLP SDK for C++
22

3-
The HERE OLP SDK for C++ is a _work-in-progress_ C++ client for [HERE Open Location Platform](https://platform.here.com).
3+
The HERE OLP SDK for C++ is a C++ client for [HERE Open Location Platform](https://platform.here.com).
44

55
## Health Сheck
66

@@ -94,15 +94,15 @@ To build the HERE OLP SDK for C++, run the following commands in the root of the
9494
```bash
9595
mkdir build && cd build
9696
cmake ..
97-
make
97+
cmake --build .
9898
```
9999

100100
To build the [Doxygen](http://www.doxygen.nl/) documentation, you need to have CMake version 3.9 or later, and set `OLP_SDK_BUILD_DOC=ON` when running CMake configuration:
101101

102102
```bash
103103
mkdir build && cd build
104104
cmake -DOLP_SDK_BUILD_DOC=ON ..
105-
make docs
105+
cmake --build . --target docs
106106
```
107107

108108
#### Install

0 commit comments

Comments
 (0)