From dae5b667a8fbd5bd79aa28e62f5a888915373dcd Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 4 Dec 2016 02:33:59 +1100 Subject: [PATCH] HOTFIX: replacing a make command I deleted without thinking --- makefile | 3 +++ todo.txt | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index d296d33..7e5efca 100644 --- a/makefile +++ b/makefile @@ -17,6 +17,9 @@ all: $(OUTDIR) dll debug: export CXXFLAGS+=-g debug: clean all +ifeq ($(OS),Windows_NT) +release: export CXXFLAGS+=-static-libgcc -static-libstdc++ +endif release: clean all package #For use on my machine ONLY diff --git a/todo.txt b/todo.txt index 5fc5c6d..5d5b6db 100644 --- a/todo.txt +++ b/todo.txt @@ -22,4 +22,5 @@ TODO: Fix the const-ness of accessors TODO: Add a screenshot of the game to README.md TODO: joystick/gamepad support TODO: add the tilesheet to the map system -TODO: Better collision logic \ No newline at end of file +TODO: Better collision logic +TODO: cleaner shutdowns \ No newline at end of file