Skip to content

Commit b670271

Browse files
authored
Fix info
1 parent efa4f71 commit b670271

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/basics.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ The most commonly-used properties:
4949

5050
**Important**: The term **link** has a slightly different meaning in CMake than you might expect. In addition to adding a library to the command line, CMake also (transitively) propagates properties of the target you link to based on their _visibility_.
5151

52-
You should think of **linking** in CMake as _depending on_.{:.info}
52+
You should think of **linking** in CMake as _depending on_.
53+
{:.info}
5354

5455
The propagation of properties depends on their **visibility**:
5556

@@ -136,7 +137,8 @@ cmake -B build -DCMAKE_BUILD_TYPE=Release
136137
cmake --build build --config Release
137138
```
138139

139-
We specify both `CMAKE_BUILD_TYPE` and `--config` to be compatible with generators (like Visual Studio/Xcode) that allow multiple configurations at once.{:.info}
140+
We specify both `CMAKE_BUILD_TYPE` and `--config` to be compatible with generators (like Visual Studio/Xcode) that allow multiple configurations at once.
141+
{:.info}
140142

141143
**Build Types**:
142144
- `Debug`: No optimization, debug symbols

0 commit comments

Comments
 (0)