diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -5,7 +5,8 @@ export SYSTEMC_HOME := $(PWD)/INSTALL V ?= 0 ifeq ($V,1) - NINJA_FLAGS += --verbose + NINJA_FLAGS += --verbose + CCTEST_FLAGS += --verbose endif SRCS = $(wildcard src/*.cc) @@ -23,7 +24,7 @@ run: build done test: build - cd BUILD/PLAYGROUND/test && ctest --output-on-failure + cd BUILD/PLAYGROUND/test && ctest --output-on-failure $(CCTEST_FLAGS) BUILD/PLAYGROUND/CMakeCache.txt: CMakeLists.txt cmake -B BUILD/PLAYGROUND $@ -S . \ |