As mentioned in #6822, we are currently printing an incorrect message if CaDiCaL or SymFPU are not found but auto-download is disabled. This PR fixes this issue.
if(NOT CaDiCaL_FOUND_SYSTEM)
check_ep_downloaded("CaDiCaL-EP")
if(NOT CaDiCaL-EP_DOWNLOADED)
- check_auto_download("CaDiCaL" "--no-cadical")
+ check_auto_download("CaDiCaL" "")
endif()
include(CheckSymbolExists)
if(NOT SymFPU_FOUND_SYSTEM)
check_ep_downloaded("SymFPU-EP")
if(NOT SymFPU-EP_DOWNLOADED)
- check_auto_download("SymFPU" "--no-symfpu")
+ check_auto_download("SymFPU" "")
endif()
include(ExternalProject)