Reubicados los cpp de librerias comunes

This commit is contained in:
2022-10-10 13:51:51 +02:00
parent 6f621987c5
commit 41d72d48d5
43 changed files with 1947 additions and 842 deletions

View File

@@ -3,7 +3,7 @@ executable = jaildoctors_dilemma
windows:
@echo off
if not exist bin\ (mkdir bin)
g++ -std=c++11 -Wall -O2 source/*.cpp -lmingw32 -lSDL2main -lSDL2 -o bin/$(executable).exe
g++ -std=c++11 -Wall -O2 source/*.cpp source/utils/*.cpp -lmingw32 -lSDL2main -lSDL2 -o bin/$(executable).exe
macos:
mkdir -p bin
g++ source/*.cpp -std=c++11 -Wall -O2 -lSDL2 -o bin/$(executable)_macos