Convirtiendo el código a cpp

This commit is contained in:
2022-08-13 15:00:01 +02:00
parent c7a7e604f1
commit 896a61ed0d
5 changed files with 460 additions and 275 deletions

6
Makefile Normal file
View File

@@ -0,0 +1,6 @@
macos:
mkdir -p bin
g++ source/*.cpp -std=c++11 -Wall -O2 -lSDL2 -o bin/asteroids_macos
linux:
mkdir -p bin
g++ source/*.cpp -std=c++11 -Wall -O2 -lSDL2 -o bin/asteroids_linux