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)
|
add_executable(example example.F90)
|
||||||
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||||||
# respect paths in appveyor.yml
|
# respect paths in appveyor.yml
|
||||||
target_link_libraries(example "C:/software/msmpi/libmsmpi64.a")
|
target_link_libraries(example "C:/software/msmpi/libmsmpi64.a")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
message(FATAL "MPI not found!")
|
message(FATAL_ERROR "MPI not found!")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
if (OPENMP_FOUND)
|
if(OPENMP_FOUND)
|
||||||
add_executable(example example.f90)
|
add_executable(example example.f90)
|
||||||
else()
|
else()
|
||||||
message(FATAL "OPENMP not found!")
|
message(FATAL_ERROR "OPENMP not found!")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user