Initial project.

This commit is contained in:
Warwick 2021-01-10 15:30:51 +00:00
commit 26781d5e6e
3 changed files with 20 additions and 0 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
# Set default options
CC = clang++
CFLAGS = -g -Wall
TARGET = Game
SRCDIR = src/
BUILDDIR = build/
all: $(TARGET)
$(TARGET): $(SRCDIR)main.cpp
$(CC) $(CFLAGS) -o $(BUILDDIR)$(TARGET) $(SRCDIR)main.cpp

BIN
build/Game Executable file

Binary file not shown.

6
src/main.cpp Normal file
View file

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