s/FATAL/FATAL_ERROR/
This commit is contained in:
parent
7a65a4cfe7
commit
b8e8a7abd1
@ -1,10 +1,10 @@
|
||||
if (MPI_FOUND)
|
||||
if(MPI_FOUND)
|
||||
add_executable(example example.F90)
|
||||
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||||
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||||
# respect paths in appveyor.yml
|
||||
target_link_libraries(example "C:/software/msmpi/libmsmpi64.a")
|
||||
endif()
|
||||
else()
|
||||
message(FATAL "MPI not found!")
|
||||
message(FATAL_ERROR "MPI not found!")
|
||||
endif()
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
if (OPENMP_FOUND)
|
||||
if(OPENMP_FOUND)
|
||||
add_executable(example example.f90)
|
||||
else()
|
||||
message(FATAL "OPENMP not found!")
|
||||
message(FATAL_ERROR "OPENMP not found!")
|
||||
endif()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user