Initial Commit

This commit is contained in:
2018-05-09 16:31:13 +02:00
commit 0811d4af39
4 changed files with 20 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*
!src
!src/*
!run.sh
!Makefile
!.gitignore

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
install:
@echo "Start compiling.."
g++ ./src/necronda-server.cpp -o ./out/necronda-server
@echo "Finished compiling!"

3
run.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
echo "Building and starting Necronda Server..."
make && ./out/necronda-server

7
src/necronda-server.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main() {
std::cout << "Hello, World!123" << std::endl;
return 0;
}