We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit b665782Copy full SHA for b665782
.gitignore
@@ -0,0 +1,4 @@
1
+# CMake
2
+cmake-build-*/
3
+build/
4
+cbuild/
CMakeLists.txt
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 3.16)
+project(gtest_coverage)
+
+set(CMAKE_CXX_STANDARD 20)
5
6
+add_executable(gtest_coverage main.cpp)
main.cpp
+#include <iostream>
+int main() {
+ std::cout << "Hello, World!" << std::endl;
+ return 0;
+}
0 commit comments