From 2b8da6aa30aebb1d40f37c8b2e7848c5bc4ec3df Mon Sep 17 00:00:00 2001 From: zawz Date: Thu, 13 Feb 2020 23:18:51 +0100 Subject: [PATCH] Enable optimisations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0171423..330bfec 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ NAME = zmidimap LDFLAGS = -lpthread CC=g++ -CXXFLAGS= -I$(IDIR) -Wall -pedantic -std=c++17 +CXXFLAGS= -I$(IDIR) -Wall -pedantic -std=c++17 -O2 ifeq ($(DEBUG),true) CXXFLAGS += -g endif