45 lines
1.7 KiB
CMake
45 lines
1.7 KiB
CMake
# CMake build for tests.
|
|
#
|
|
# See also the Makefile, which is currently more fully featured on unix.
|
|
|
|
|
|
# Set cmake builtin variables before calling project(), otherwise the
|
|
# cmake-provided defaults will get in first!
|
|
set(CMAKE_BUILD_TYPE "Release" CACHE STRING
|
|
"Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel."
|
|
)
|
|
|
|
set(CXX_STD "c++11" CACHE STRING "Version of C++ standard in use")
|
|
|
|
# This project is infrastructure. Warnings from common warning levels should
|
|
# be errors on all compilers, unless explicitly silenced.
|
|
if(NOT WIN32)
|
|
set(CMAKE_CXX_FLAGS "-Wall -Werror -std=${CXX_STD}" CACHE STRING "Flags used by the compiler during all build types.")
|
|
endif()
|
|
|
|
project(tinyformat)
|
|
cmake_minimum_required(VERSION 2.8)
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
|
|
|
if(WIN32)
|
|
# Treat warnings as errors. Would set this above, but need the default
|
|
# flags too, and `project()` behaves is differently on different systems.
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /WX")
|
|
endif()
|
|
|
|
# Dummy translation unit to test for missing `inline`s
|
|
include_directories(${CMAKE_SOURCE_DIR})
|
|
file(WRITE ${CMAKE_BINARY_DIR}/_empty.cpp "#include \"tinyformat.h\"")
|
|
add_executable(tinyformat_test tinyformat_test.cpp ${CMAKE_BINARY_DIR}/_empty.cpp)
|
|
enable_testing()
|
|
if(CMAKE_CONFIGURATION_TYPES)
|
|
set(ctest_config_opt -C ${CMAKE_BUILD_TYPE})
|
|
endif()
|
|
add_test(NAME test COMMAND tinyformat_test)
|
|
add_custom_target(testall COMMAND ${CMAKE_CTEST_COMMAND} -V ${ctest_config_opt} DEPENDS tinyformat_test)
|
|
|
|
option(COMPILE_SPEED_TEST FALSE)
|
|
if (COMPILE_SPEED_TEST)
|
|
add_executable(tinyformat_speed_test tinyformat_speed_test.cpp)
|
|
endif ()
|