add a build guide
This commit is contained in:
parent
0aa3c87ae4
commit
3c731e9b9c
5 changed files with 15 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
log.txt
|
|
4
Makefile
4
Makefile
|
@ -1,2 +1,2 @@
|
||||||
soup: main.cpp
|
soup: src/main.cpp
|
||||||
g++ main.cpp -o soup
|
g++ src/main.cpp -o soup
|
||||||
|
|
13
README.md
13
README.md
|
@ -1,2 +1,13 @@
|
||||||
this is just some hello world type C++ code with comments
|
This is just some hello world type C++ code with comments read below for build instructions
|
||||||
|
|
||||||
|
|
||||||
|
*--------Building--------*
|
||||||
|
Before you can compile the code you will need GNU make and GNU g++.
|
||||||
|
|
||||||
|
This is what you should type in the command line
|
||||||
|
|
||||||
|
1. git clone https://gitdab.com/Canneddonuts/CPP_git_test
|
||||||
|
2. cd CPP_git_test
|
||||||
|
3. make
|
||||||
|
|
||||||
|
|
||||||
|
|
3
TO-DO.md
3
TO-DO.md
|
@ -1,2 +1 @@
|
||||||
1. add a makefile or a way to generate one
|
Learn stuffies
|
||||||
2. add a Build guide
|
|
||||||
|
|
Loading…
Reference in a new issue