Skip to content

Commit c414bfe

Browse files
committed
GitHub tips don't work
1 parent 64a124e commit c414bfe

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

docs/build-clio.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,17 +124,15 @@ conan lock create .
124124
conan install .. --output-folder . --build missing --settings build_type=Release
125125
```
126126

127-
> [!TIP]
128-
> You can use `--profile:all <PROFILE_NAME>` to choose a specific conan profile.
127+
> You can add `--profile:all <PROFILE_NAME>` to choose a specific conan profile.
129128
130129
3. Configure and generate build files with CMake
131130

132131
```sh
133132
cmake -DCMAKE_TOOLCHAIN_FILE:FILEPATH=build/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release ..
134133
```
135134

136-
> [!TIP]
137-
> You can also add `-GNinja` to use Ninja build system instead of Make.
135+
> You can add `-GNinja` to use the Ninja build system (instead of Make).
138136
139137
4. Now, you can build all targets or specific ones:
140138

@@ -145,7 +143,7 @@ conan lock create .
145143
cmake --build . --parallel 8 --target clio_server
146144
```
147145

148-
You should see `clio_server` and `clio_tests` in the `build` directory (the current directory).
146+
You should see `clio_server` and `clio_tests` in the current directory.
149147

150148
> [!NOTE]
151149
> If you've built Clio before and the build is now failing, it's likely due to updated dependencies. Try deleting the build folder and then rerunning the Conan and CMake commands mentioned above.

0 commit comments

Comments
 (0)