Skip to content

Commit a2f1a49

Browse files
committed
Initial commit
0 parents  commit a2f1a49

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cmake_minimum_required(VERSION "3.12")
2+
3+
project("HelloWorld")
4+
5+
add_executable(helloworld main.cpp)

main.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <iostream>
2+
3+
int main(int argc, char *argv[])
4+
{
5+
std::cout << "Hello World!" << std::endl;
6+
return 0;
7+
}

sse/sse.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include "sse.hpp"
2+
#include <iostream>
3+
4+
void sse()
5+
{
6+
std::cout << "SSE is great!" << std::endl;
7+
}

sse/sse.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#pragma once
2+
3+
void sse();

0 commit comments

Comments
 (0)