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
Example C++ project that uses CMake and GoogleTest
# build project
mkdir build &&cd build
cmake ..
cmake --build .# run tests
ctest .# or run gtest directly
./test/unit_test
# run main function
./example
About
Example C++ project that uses CMake and GoogleTest