You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ The CI providers used and that might need some setup :
36
36
37
37
## Requirements :
38
38
39
-
- CMake 3.8.2 (Not needed for all scripts)
39
+
- CMake 3.16 (Not needed for all scripts)
40
40
- Git (for the submodules)
41
41
- Any of the CI providers listed above if needed.
42
42
@@ -51,11 +51,11 @@ The CI providers used and that might need some setup :
51
51
- Coverage.cmake : Test coverage script to add a 'Coverage' build type to CMake
52
52
- CodeQL already knows about cmake and can build most of the projects without any special configuration. A sample configuration is in this project, mostly due to using submodules.
53
53
54
-
## FAQ
54
+
## FAQ
55
55
56
56
**Q**: I'm new to this CMake stuff, where do I start ?
57
57
58
-
**A**: I would suggest reading [CGold](https://cgold.readthedocs.io)which covers this way better than I could.
58
+
**A**: I would suggest reading my [blog posts](https://siliceum.com/en/blog/post/cmake_01_cmake-basics), [CGold](https://cgold.readthedocs.io)or [An introduction to Modern CMake](https://cliutils.gitlab.io/modern-cmake/README.html) or simply the latest and official [tutorial](https://cmake.org/cmake/help/latest/guide/tutorial/index.html)!
59
59
60
60
___
61
61
@@ -69,7 +69,7 @@ ___
69
69
**Q**: Should I always put my dependencies in the folder external
70
70
71
71
**A**: Absolutely not ! It is a great place for small libraries, but you probably don't want to have to rebuild big libs every time.
72
-
For those, you can use a package manager such as [Hunter](https://github.com/ruslo/hunter)or simply rely on find_package/library.
72
+
For those, you can use a package manager such as [VCPKG](https://github.com/microsoft/vcpkg/), [CPM](https://github.com/cpm-cmake/CPM.cmake)or simply rely on `find_package`.
0 commit comments