From 1df7427f7d2b12c281fc882f5697237db2467cdd Mon Sep 17 00:00:00 2001 From: Jerome Date: Sat, 18 Dec 2021 17:00:07 +0100 Subject: [PATCH] Fixed Makefile for Catch2 tests. --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 1d7bb07..31152fd 100644 --- a/test/Makefile +++ b/test/Makefile @@ -22,10 +22,10 @@ OBJECTS = $(SOURCES:$(SRC_PATH)/%.$(SRC_EXT)=$(BUILD_PATH)/%.o) DEPS = $(OBJECTS:.o=.d) # flags # -COMPILE_FLAGS = -std=c++17 -Wall -Wextra -O0 -MMD -fprofile-arcs -ftest-coverage -g -lgcov +COMPILE_FLAGS = -std=c++17 -Wall -Wextra -O0 -fprofile-arcs -ftest-coverage -g INCLUDES = -I include/ -I ../include/ -I /usr/local/include # Space-separated pkg-config libraries used by this project -LIBS = +LIBS = -lgcov .PHONY: default_target default_target: debug