Skip to content

Commit 908a0f5

Browse files
committed
Merge branch 'main' of github.com:greg7mdp/gtl
2 parents 1bf5d1c + bf2547d commit 908a0f5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ Copy the gtl directory to your project. Update your include path. That's all.
3333

3434
If you are using cmake, you can use FetchContent to integrate gtl to your project, for example:
3535

36-
```
37-
include(FetchContent)
38-
FetchContent_Declare(
39-
gtl
40-
GIT_REPOSITORY https://github.com/greg7mdp/gtl.git
41-
GIT_TAG v1.2.0 # adjust tag/branch/commit as needed
42-
)
43-
FetchContent_MakeAvailable(gtl)
44-
45-
...
46-
target_link_libraries (my_target PRIVATE gtl)
36+
```cmake
37+
include(FetchContent)
38+
FetchContent_Declare(
39+
gtl
40+
GIT_REPOSITORY https://github.com/greg7mdp/gtl.git
41+
GIT_TAG v1.2.0 # adjust tag/branch/commit as needed
42+
)
43+
FetchContent_MakeAvailable(gtl)
44+
45+
...
46+
target_link_libraries (my_target PRIVATE gtl)
4747
```
4848

4949
#### Using a package manager

0 commit comments

Comments
 (0)