Initial Commit
This commit is contained in:
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
*
|
||||
!src
|
||||
!src/*
|
||||
!run.sh
|
||||
!Makefile
|
||||
!.gitignore
|
4
Makefile
Normal file
4
Makefile
Normal 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
3
run.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
echo "Building and starting Necronda Server..."
|
||||
make && ./out/necronda-server
|
7
src/necronda-server.cpp
Normal file
7
src/necronda-server.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello, World!123" << std::endl;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user