You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message(WARNING"GMP not found. Install it with 'brew install gmp' on macOS. IKOS analysis will be disabled.")
10
-
elseif(IS_LINUX)
11
-
message(WARNING"GMP not found. Install it with 'apt-get install libgmp-dev' on Linux. IKOS analysis will be disabled.")
12
-
else()
13
-
message(WARNING"GMP not found. IKOS analysis will be disabled.")
8
+
if(IS_LINUX AND AUTO_INSTALL_DEPENDENCIES)
9
+
message(STATUS"GMP not found. It will be installed by the dependency script if AUTO_INSTALL_DEPENDENCIES is enabled.")
10
+
else
11
+
if(IS_MACOS)
12
+
message(WARNING"GMP not found. Install it with 'brew install gmp' on macOS. IKOS analysis will be disabled.")
13
+
elseif(IS_LINUX)
14
+
message(WARNING"GMP not found. Install it with 'apt-get install libgmp-dev' on Linux or run CMake with -DAUTO_INSTALL_DEPENDENCIES=ON. IKOS analysis will be disabled.")
15
+
else()
16
+
message(WARNING"GMP not found. IKOS analysis will be disabled.")
17
+
endif()
18
+
return()
14
19
endif()
15
-
return()
16
20
endif()
17
21
18
22
# Boost - use same approach as main CMakeLists to ensure compatibility
0 commit comments