Skip to content

Commit

Permalink
doc: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
senbaikang committed Sep 23, 2022
1 parent 050553a commit 4e84b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ DataFilter uses `conan` to manage dependencies and `cmake` to build the executab
$ conan install .. -s build_type=Release --profile CONAN_PROFILE_FOR_CLANG --build=missing
```

`CONAN_PROFILE_FOR_CLANG` is the `conan` profile for clang. Please refer to the [official documentation](https://docs.conan.io/en/latest/reference/profiles.html) for more information.
`CONAN_PROFILE_FOR_CLANG` is the `conan` profile for clang. Please refer to the [official documentation of conan](https://docs.conan.io/en/latest/reference/profiles.html) for more information.

3. Use `cmake` to build the executable:

Expand All @@ -49,7 +49,7 @@ DataFilter uses `conan` to manage dependencies and `cmake` to build the executab
In case of using an undefault compiler, such as clang, on Linux, please use:

```shell
$ cmake -D CMAKE_C_COMPILER=CLANG_BIN -D CMAKE_CXX_COMPILER=CLANG++_BIN -D CMALE_BUILD_TYPE=Release ..; cmake --build .
$ cmake -D CMAKE_C_COMPILER=CLANG_BIN -D CMAKE_CXX_COMPILER=CLANG++_BIN -D CMAKE_BUILD_TYPE=Release ..; cmake --build .
```

Where `CLANG_BIN` and `CLANG++_BIN` are the clang executables on your platform.
Expand Down

0 comments on commit 4e84b14

Please sign in to comment.