From: Timo Heister Date: Sun, 19 Dec 2021 12:11:52 +0000 (-0500) Subject: unset CMAKE_GENERATOR X-Git-Tag: v9.3.3-r1~1^2^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e98e209adb76a2c812bb45244691f60acb85d0b4;p=candi.git 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. --- 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