2016-01-29 16:21:17 +01:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Build the google test library
|
2015-12-09 14:52:09 +01:00
|
|
|
|
2015-08-19 07:27:08 -07:00
|
|
|
# We compile Google Test ourselves instead of using pre-compiled libraries.
|
|
|
|
# See the Google Test FAQ "Why is it not recommended to install a
|
|
|
|
# pre-compiled copy of Google Test (for example, into /usr/local)?"
|
|
|
|
# at http://code.google.com/p/googletest/wiki/FAQ for more details.
|
|
|
|
add_library(gmock STATIC
|
2016-02-10 07:16:49 -08:00
|
|
|
gmock-gtest-all.cc gmock/gmock.h gtest/gtest.h gtest/gtest-spi.h)
|
2016-04-13 08:26:42 -04:00
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_HAS_STD_WSTRING=1)
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(gmock SYSTEM PUBLIC . gmock gtest)
|
2016-01-29 16:21:17 +01:00
|
|
|
|
2015-08-19 07:27:08 -07:00
|
|
|
find_package(Threads)
|
|
|
|
if (Threads_FOUND)
|
|
|
|
target_link_libraries(gmock ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
else ()
|
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_HAS_PTHREAD=0)
|
|
|
|
endif ()
|
|
|
|
|
2019-04-13 06:56:34 -07:00
|
|
|
if (NOT SUPPORTS_VARIADIC_TEMPLATES)
|
2016-01-29 13:03:47 +01:00
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_LANG_CXX11=0)
|
2015-08-19 07:27:08 -07:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (MSVC)
|
2019-05-12 01:48:27 +07:00
|
|
|
# Workaround a bug in implementation of variadic templates in MSVC11.
|
2015-08-19 07:27:08 -07:00
|
|
|
target_compile_definitions(gmock PUBLIC _VARIADIC_MAX=10)
|
2019-05-12 01:48:27 +07:00
|
|
|
|
|
|
|
# Disable MSVC warnings of _CRT_INSECURE_DEPRECATE functions.
|
2019-06-01 08:24:36 -07:00
|
|
|
target_compile_definitions(gmock PRIVATE _CRT_SECURE_NO_WARNINGS)
|
2019-05-12 01:48:27 +07:00
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
# Disable MSVC warnings of POSIX functions.
|
|
|
|
target_compile_options(gmock PUBLIC -Wno-deprecated-declarations)
|
|
|
|
endif ()
|
2015-08-19 07:27:08 -07:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
# GTest doesn't detect <tuple> with clang.
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_USE_OWN_TR1_TUPLE=1)
|
|
|
|
endif ()
|
|
|
|
|
2018-01-17 05:46:14 -08:00
|
|
|
# Silence MSVC tr1 deprecation warning in gmock.
|
|
|
|
target_compile_definitions(gmock
|
2019-04-13 07:30:55 -07:00
|
|
|
PUBLIC _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING=1)
|
2018-01-17 05:46:14 -08:00
|
|
|
|
2016-01-29 16:21:17 +01:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Build the actual library tests
|
|
|
|
|
2014-08-09 09:07:15 -07:00
|
|
|
set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
|
2016-02-03 12:59:03 +01:00
|
|
|
add_library(test-main STATIC ${TEST_MAIN_SRC})
|
|
|
|
target_compile_definitions(test-main PUBLIC
|
|
|
|
FMT_USE_FILE_DESCRIPTORS=$<BOOL:${HAVE_OPEN}>)
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(test-main SYSTEM PUBLIC gtest gmock)
|
2016-04-24 07:45:13 -07:00
|
|
|
target_link_libraries(test-main gmock fmt)
|
2016-01-29 16:21:17 +01:00
|
|
|
|
2016-03-18 08:10:06 -07:00
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
|
2016-02-04 08:15:19 -08:00
|
|
|
# Workaround GTest bug https://github.com/google/googletest/issues/705.
|
2016-02-04 08:36:41 -08:00
|
|
|
check_cxx_compiler_flag(
|
|
|
|
-fno-delete-null-pointer-checks HAVE_FNO_DELETE_NULL_POINTER_CHECKS)
|
|
|
|
if (HAVE_FNO_DELETE_NULL_POINTER_CHECKS)
|
|
|
|
target_compile_options(test-main PUBLIC -fno-delete-null-pointer-checks)
|
|
|
|
endif ()
|
2016-02-04 08:15:19 -08:00
|
|
|
|
2016-03-18 07:52:24 -07:00
|
|
|
# Use less strict pedantic flags for the tests because GMock doesn't compile
|
|
|
|
# cleanly with -pedantic and -std=c++98.
|
2016-01-29 16:21:17 +01:00
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang"))
|
2018-06-06 16:57:59 +03:00
|
|
|
#set(PEDANTIC_COMPILE_FLAGS -Wall -Wextra -Wno-long-long -Wno-variadic-macros)
|
2016-01-29 16:21:17 +01:00
|
|
|
endif ()
|
2014-08-09 09:04:38 -07:00
|
|
|
|
2016-07-16 07:58:42 -07:00
|
|
|
function(add_fmt_executable name)
|
|
|
|
add_executable(${name} ${ARGN})
|
|
|
|
if (MINGW)
|
|
|
|
target_link_libraries(${name} -static-libgcc -static-libstdc++)
|
|
|
|
endif ()
|
|
|
|
endfunction()
|
|
|
|
|
2014-08-09 09:04:38 -07:00
|
|
|
# Adds a test.
|
2016-02-03 12:59:03 +01:00
|
|
|
# Usage: add_fmt_test(name srcs...)
|
2014-09-05 07:12:20 -07:00
|
|
|
function(add_fmt_test name)
|
2016-07-16 07:58:42 -07:00
|
|
|
add_fmt_executable(${name} ${name}.cc ${ARGN})
|
2016-02-03 12:59:03 +01:00
|
|
|
target_link_libraries(${name} test-main)
|
2016-07-16 07:58:42 -07:00
|
|
|
|
2018-03-21 07:50:59 -07:00
|
|
|
# Define if certain C++ features can be used.
|
2016-01-29 16:21:17 +01:00
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(${name} PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
2014-08-15 08:40:03 -07:00
|
|
|
endif ()
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(${name} SYSTEM PUBLIC gtest gmock)
|
2015-03-01 16:12:26 -08:00
|
|
|
add_test(NAME ${name} COMMAND ${name})
|
2014-08-09 09:04:38 -07:00
|
|
|
endfunction()
|
|
|
|
|
2015-06-22 08:17:23 -07:00
|
|
|
add_fmt_test(assert-test)
|
2018-12-07 10:19:44 -08:00
|
|
|
add_fmt_test(chrono-test)
|
2019-03-10 07:41:29 -07:00
|
|
|
add_fmt_test(color-test)
|
2018-09-19 08:55:45 -07:00
|
|
|
add_fmt_test(core-test)
|
2019-01-27 06:47:27 -08:00
|
|
|
add_fmt_test(grisu-test)
|
2019-02-03 07:44:42 -08:00
|
|
|
target_compile_definitions(grisu-test PRIVATE FMT_USE_GRISU=1)
|
2014-09-05 07:12:20 -07:00
|
|
|
add_fmt_test(gtest-extra-test)
|
2018-09-19 08:55:45 -07:00
|
|
|
add_fmt_test(format-test mock-allocator.h)
|
2018-11-20 07:43:40 -08:00
|
|
|
if (NOT (MSVC AND BUILD_SHARED_LIBS))
|
|
|
|
add_fmt_test(format-impl-test)
|
|
|
|
endif ()
|
2018-11-14 09:39:37 -08:00
|
|
|
add_fmt_test(locale-test)
|
2016-05-06 07:37:20 -07:00
|
|
|
add_fmt_test(ostream-test)
|
2018-11-27 11:52:00 +01:00
|
|
|
add_fmt_test(prepare-test)
|
2014-09-05 07:12:20 -07:00
|
|
|
add_fmt_test(printf-test)
|
2016-06-08 01:23:32 +02:00
|
|
|
add_fmt_test(custom-formatter-test)
|
2018-05-10 16:11:00 +02:00
|
|
|
add_fmt_test(ranges-test)
|
2019-05-15 10:02:40 -07:00
|
|
|
add_fmt_test(scan-test)
|
2015-08-19 08:03:17 -07:00
|
|
|
|
2014-08-09 09:04:38 -07:00
|
|
|
if (HAVE_OPEN)
|
2016-07-16 07:58:42 -07:00
|
|
|
add_fmt_executable(posix-mock-test
|
2018-03-21 07:50:59 -07:00
|
|
|
posix-mock-test.cc ../src/format.cc ${TEST_MAIN_SRC})
|
2017-10-21 07:38:49 -07:00
|
|
|
target_include_directories(
|
|
|
|
posix-mock-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-01-29 13:18:02 +01:00
|
|
|
target_compile_definitions(posix-mock-test PRIVATE FMT_USE_FILE_DESCRIPTORS=1)
|
2015-06-24 09:16:03 -07:00
|
|
|
target_link_libraries(posix-mock-test gmock)
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(posix-mock-test SYSTEM PUBLIC gtest gmock)
|
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(posix-mock-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
endif ()
|
2019-06-23 17:10:57 -07:00
|
|
|
if (HAVE_STRTOD_L)
|
|
|
|
target_compile_definitions(posix-mock-test PRIVATE FMT_LOCALE)
|
|
|
|
endif ()
|
2015-06-24 09:16:03 -07:00
|
|
|
add_test(NAME posix-mock-test COMMAND posix-mock-test)
|
|
|
|
add_fmt_test(posix-test)
|
2014-08-09 09:04:38 -07:00
|
|
|
endif ()
|
|
|
|
|
2016-07-16 07:58:42 -07:00
|
|
|
add_fmt_executable(header-only-test
|
2014-12-09 06:22:55 -08:00
|
|
|
header-only-test.cc header-only-test2.cc test-main.cc)
|
|
|
|
target_link_libraries(header-only-test gmock)
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(header-only-test SYSTEM PUBLIC gtest gmock)
|
2016-04-24 07:45:13 -07:00
|
|
|
if (TARGET fmt-header-only)
|
|
|
|
target_link_libraries(header-only-test fmt-header-only)
|
2016-01-29 13:18:02 +01:00
|
|
|
else ()
|
2017-10-21 07:38:49 -07:00
|
|
|
target_include_directories(
|
|
|
|
header-only-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-01-29 13:18:02 +01:00
|
|
|
target_compile_definitions(header-only-test PRIVATE FMT_HEADER_ONLY=1)
|
|
|
|
endif ()
|
2014-12-09 06:22:55 -08:00
|
|
|
|
2018-06-06 16:57:59 +03:00
|
|
|
message(STATUS "FMT_PEDANTIC: ${FMT_PEDANTIC}")
|
|
|
|
|
2016-02-03 10:01:53 +01:00
|
|
|
if (FMT_PEDANTIC)
|
2019-05-27 20:02:08 -07:00
|
|
|
# MSVC fails to compile GMock when C++17 is enabled.
|
|
|
|
if (FMT_HAS_VARIANT AND NOT MSVC)
|
|
|
|
add_fmt_test(std-format-test)
|
|
|
|
set_property(TARGET std-format-test PROPERTY CXX_STANDARD 17)
|
|
|
|
endif ()
|
|
|
|
|
2019-03-10 07:56:46 -07:00
|
|
|
# Test that the library can be compiled with exceptions disabled.
|
|
|
|
# -fno-exception is broken in icc: https://github.com/fmtlib/fmt/issues/822.
|
|
|
|
if (NOT CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
|
|
|
check_cxx_compiler_flag(-fno-exceptions HAVE_FNO_EXCEPTIONS_FLAG)
|
|
|
|
endif ()
|
|
|
|
if (HAVE_FNO_EXCEPTIONS_FLAG)
|
|
|
|
add_library(noexception-test ../src/format.cc)
|
|
|
|
target_include_directories(
|
|
|
|
noexception-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
|
|
|
target_compile_options(noexception-test PRIVATE -fno-exceptions)
|
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(noexception-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
# Test that the library compiles without locale.
|
|
|
|
add_library(nolocale-test ../src/format.cc)
|
|
|
|
target_include_directories(
|
|
|
|
nolocale-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
|
|
|
target_compile_definitions(
|
|
|
|
nolocale-test PRIVATE FMT_STATIC_THOUSANDS_SEPARATOR=1)
|
|
|
|
|
2016-02-03 13:05:18 +01:00
|
|
|
# Test that the library compiles without windows.h.
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
2018-03-21 07:50:59 -07:00
|
|
|
add_library(no-windows-h-test ../src/format.cc)
|
2017-10-21 07:38:49 -07:00
|
|
|
target_include_directories(
|
|
|
|
no-windows-h-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-02-03 13:05:18 +01:00
|
|
|
target_compile_definitions(no-windows-h-test PRIVATE FMT_USE_WINDOWS_H=0)
|
2018-06-06 16:57:59 +03:00
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(no-windows-h-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
endif ()
|
|
|
|
target_include_directories(no-windows-h-test SYSTEM PUBLIC gtest gmock)
|
2016-02-03 13:05:18 +01:00
|
|
|
endif ()
|
2016-01-29 16:21:17 +01:00
|
|
|
|
2016-02-03 13:05:18 +01:00
|
|
|
add_test(compile-test ${CMAKE_CTEST_COMMAND}
|
|
|
|
--build-and-test
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/compile-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/compile-test"
|
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
2016-05-02 23:51:37 +02:00
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
2018-06-06 16:57:59 +03:00
|
|
|
--build-options
|
2016-05-02 23:51:37 +02:00
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2018-06-06 16:57:59 +03:00
|
|
|
"-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}"
|
|
|
|
"-DCXX_STANDARD_FLAG=${CXX_STANDARD_FLAG}"
|
|
|
|
"-DPEDANTIC_COMPILE_FLAGS=${PEDANTIC_COMPILE_FLAGS}"
|
2016-05-02 23:51:37 +02:00
|
|
|
"-DSUPPORTS_USER_DEFINED_LITERALS=${SUPPORTS_USER_DEFINED_LITERALS}")
|
2018-09-21 13:55:33 -07:00
|
|
|
endif ()
|
2016-02-03 13:05:18 +01:00
|
|
|
|
2018-09-21 13:55:33 -07:00
|
|
|
# These tests are disabled on Windows because they take too long.
|
|
|
|
if (FMT_PEDANTIC AND NOT WIN32)
|
|
|
|
# Test if the targets are found from the build directory.
|
2016-02-03 13:05:18 +01:00
|
|
|
add_test(find-package-test ${CMAKE_CTEST_COMMAND}
|
|
|
|
-C ${CMAKE_BUILD_TYPE}
|
|
|
|
--build-and-test
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/find-package-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/find-package-test"
|
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
2016-05-04 00:51:28 +02:00
|
|
|
--build-options
|
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2018-06-06 16:57:59 +03:00
|
|
|
"-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}"
|
2016-05-04 00:51:28 +02:00
|
|
|
"-DFMT_DIR=${PROJECT_BINARY_DIR}"
|
2018-06-06 16:57:59 +03:00
|
|
|
"-DPEDANTIC_COMPILE_FLAGS=${PEDANTIC_COMPILE_FLAGS}"
|
2016-05-04 00:51:28 +02:00
|
|
|
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
|
2016-02-03 13:05:18 +01:00
|
|
|
|
2018-09-21 13:55:33 -07:00
|
|
|
# Test if the targets are found when add_subdirectory is used.
|
2016-02-10 07:01:40 -08:00
|
|
|
add_test(add-subdirectory-test ${CMAKE_CTEST_COMMAND}
|
2016-02-03 13:05:18 +01:00
|
|
|
-C ${CMAKE_BUILD_TYPE}
|
|
|
|
--build-and-test
|
2016-02-10 07:01:40 -08:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/add-subdirectory-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/add-subdirectory-test"
|
2016-02-03 13:05:18 +01:00
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
2016-05-04 00:51:28 +02:00
|
|
|
--build-options
|
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2018-06-06 16:57:59 +03:00
|
|
|
"-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}"
|
|
|
|
"-DPEDANTIC_COMPILE_FLAGS=${PEDANTIC_COMPILE_FLAGS}"
|
2016-05-04 00:51:28 +02:00
|
|
|
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
|
2016-02-03 13:05:18 +01:00
|
|
|
endif ()
|