mirror of
1
0
Fork 0

fix typo in variables.md

This commit is contained in:
A Gruber 2019-06-24 13:32:29 +00:00
parent 30c83f03e8
commit 1400e58b0a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ set_target_properties(TargetName PROPERTIES
CXX_STANDARD 11) CXX_STANDARD 11)
``` ```
The first form is more general, and can set multiple targets/files/tests at once, and has useful options. The second is a shortcut for setting several properties on one target. And you can get targets similarly: The first form is more general, and can set multiple targets/files/tests at once, and has useful options. The second is a shortcut for setting several properties on one target. And you can get properties similarly:
```cmake ```cmake
get_property(ResultVariable TARGET TargetName PROPERTY CXX_STANDARD) get_property(ResultVariable TARGET TargetName PROPERTY CXX_STANDARD)