Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit 7326970

Browse files
committed
Initial Project Upload. Next: Nanomsg for libpfc_network
1 parent a4e907e commit 7326970

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
build-*/
2+
build*/
3+
4+
#Sublime
5+
*.sublime-workspace
6+
7+
#Linux
8+
*.swp
9+
10+
*~*.TMP

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
cmake_minimum_required(VERSION 3.12.0)
2+
project (hello)
3+
add_executable(hello source/cpp/main.cpp)

source/cpp/main.cpp

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

0 commit comments

Comments
 (0)