s/FATAL/FATAL_ERROR/

This commit is contained in:
Radovan Bast 2015-09-18 14:07:57 +02:00
parent 7a65a4cfe7
commit b8e8a7abd1
2 changed files with 5 additions and 5 deletions

View File

@ -5,6 +5,6 @@ if (MPI_FOUND)
target_link_libraries(example "C:/software/msmpi/libmsmpi64.a")
endif()
else()
message(FATAL "MPI not found!")
message(FATAL_ERROR "MPI not found!")
endif()

View File

@ -1,6 +1,6 @@
if(OPENMP_FOUND)
add_executable(example example.f90)
else()
message(FATAL "OPENMP not found!")
message(FATAL_ERROR "OPENMP not found!")
endif()