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 a2f1a49Copy full SHA for a2f1a49
CMakeLists.txt
@@ -0,0 +1,5 @@
1
+cmake_minimum_required(VERSION "3.12")
2
+
3
+project("HelloWorld")
4
5
+add_executable(helloworld main.cpp)
main.cpp
@@ -0,0 +1,7 @@
+#include <iostream>
+int main(int argc, char *argv[])
+{
+ std::cout << "Hello World!" << std::endl;
6
+ return 0;
7
+}
sse/sse.cpp
+#include "sse.hpp"
+void sse()
+ std::cout << "SSE is great!" << std::endl;
sse/sse.hpp
@@ -0,0 +1,3 @@
+#pragma once
+void sse();
0 commit comments