Fix a couple of spelling typos

This commit is contained in:
Eric Noulard
2017-07-05 15:01:05 +02:00
parent f09151bc87
commit 3c2c439ef8
6 changed files with 7 additions and 7 deletions

View File

@ -67,14 +67,14 @@ function(add_sanitizers ...)
if (NUM_COMPILERS GREATER 1)
message(WARNING "Can't use any sanitizers for target ${TARGET}, "
"because it will be compiled by incompatible compilers. "
"Target will be compiled without sanitzers.")
"Target will be compiled without sanitizers.")
return()
# If the target is compiled by no known compiler, ignore it.
elseif (NUM_COMPILERS EQUAL 0)
message(WARNING "Can't use any sanitizers for target ${TARGET}, "
"because it uses an unknown compiler. Target will be "
"compiled without sanitzers.")
"compiled without sanitizers.")
return()
endif ()