fmt/test/CMakeLists.txt

25 lines
747 B
CMake
Raw Normal View History

2014-01-02 19:31:53 +00:00
# Test if compile errors are produced where necessary.
include(CheckCXXSourceCompiles)
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_CURRENT_SOURCE_DIR}/..)
2014-01-07 16:43:53 +00:00
function (expect_compile_error code)
check_cxx_source_compiles("
2014-01-02 19:31:53 +00:00
#include \"format.cc\"
2014-01-07 16:43:53 +00:00
int main() {
${code}
}
" compiles)
2014-01-07 17:50:36 +00:00
set (does_compile ${compiles})
# Unset the CMake cache variable compiles. Otherwise the compile test will
2014-01-07 19:34:32 +00:00
# just use cached information next time it runs.
2014-01-07 17:50:36 +00:00
unset(compiles CACHE)
if (does_compile)
2014-01-07 16:43:53 +00:00
error("No compile error for: ${code}")
endif ()
endfunction ()
# Writing a wide character to a character stream Writer is forbidden.
expect_compile_error("fmt::Writer() << L'a';")
expect_compile_error("fmt::Writer() << fmt::pad(\"abc\", 5, L' ');")