From e98e209adb76a2c812bb45244691f60acb85d0b4 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sun, 19 Dec 2021 07:11:52 -0500 Subject: [PATCH] unset CMAKE_GENERATOR One can set the CMAKE_GENERATOR to set the default generator when cmake is executed (I have set it to Ninja). This of course confuses candi, as no makefiles will be generated. --- candi.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/candi.sh b/candi.sh index 6789252..5d1b91c 100755 --- a/candi.sh +++ b/candi.sh @@ -37,6 +37,9 @@ fi # Start global timer TIC_GLOBAL="$(${DATE_CMD} +%s)" +# unset CMAKE_GENERATOR because we assume the default (make) to be used +unset CMAKE_GENERATOR + ################################################################################ # Parse command line input parameters PREFIX=~/dealii-candi -- 2.39.5