From 90f2e8d61a82be3b2cd60d112cfbd7fcf48af76b Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Tue, 6 Oct 2015 17:03:41 +0200 Subject: [PATCH] Force CMake to generate UNIX makefiles on all platforms --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af93c31772..883e0663da 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ j ?= 4 # -------------------------------------------------------------------- # describe how to build a cmake config define cmake-build -+mkdir -p $(PWD)/build_$@ && cd $(PWD)/build_$@ && cmake .. -DCONFIG=$(1) ++mkdir -p $(PWD)/build_$@ && cd $(PWD)/build_$@ && cmake .. -G"Unix Makefiles" -DCONFIG=$(1) +make -j$(j) -C $(PWD)/build_$@ --no-print-directory $(ARGS) endef