Skip to content

Instantly share code, notes, and snippets.

@zhuker
Created December 14, 2023 15:51
Show Gist options
  • Save zhuker/77c904fbb1d69039fd98221647dd5060 to your computer and use it in GitHub Desktop.
Save zhuker/77c904fbb1d69039fd98221647dd5060 to your computer and use it in GitHub Desktop.
add googletest to cmakelists.txt
include(FetchContent)
FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG v1.14.0
)
FetchContent_MakeAvailable(googletest)
add_executable(mytests
MyTest.cpp
)
target_link_libraries(mytests gtest gtest_main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment