Simplify compile tests.

This commit is contained in:
Victor Zverovich
2014-01-07 09:50:36 -08:00
parent ec7006fb99
commit be17d14544
2 changed files with 5 additions and 8 deletions
+5 -2
View File
@@ -10,10 +10,13 @@ function (expect_compile_error code)
${code}
}
" compiles)
if (compiles)
set (does_compile ${compiles})
# Unset the CMake cache variable compiles. Otherwise the compile test will
# just used cached information next time it runs.
unset(compiles CACHE)
if (does_compile)
error("No compile error for: ${code}")
endif ()
unset(compiles CACHE)
endfunction ()
# Writing a wide character to a character stream Writer is forbidden.