quickstart-cmake.md: fix typo in comment

This commit is contained in:
Derek Huang 2024-12-16 03:29:22 -05:00
parent bedd931440
commit e6036c9479

View file

@ -76,7 +76,7 @@ set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Since CMake 3.20 CONFIG can be omitted as the FindGTest find module will
# prefer the upstream (provided by Google Test) GTestConfig.cmake is available
# prefer the upstream (provided by Google Test) GTestConfig.cmake if available
find_package(GTest 1.15.0 REQUIRED CONFIG)
```