2015-02-12 22:41:45 +03:00
|
|
|
message(STATUS "CMake version: ${CMAKE_VERSION}")
|
|
|
|
|
2016-01-11 21:01:49 +03:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2012-12-07 21:02:15 +04:00
|
|
|
|
2012-12-07 21:41:02 +04:00
|
|
|
# Set the default CMAKE_BUILD_TYPE to Release.
|
|
|
|
# This should be done before the project command since the latter can set
|
|
|
|
# CMAKE_BUILD_TYPE itself (it does so for nmake).
|
|
|
|
if (NOT CMAKE_BUILD_TYPE)
|
|
|
|
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.")
|
|
|
|
endif ()
|
|
|
|
|
2015-05-12 17:35:29 +03:00
|
|
|
option(FMT_PEDANTIC "Enable extra warnings and expensive tests." OFF)
|
2015-08-31 16:49:06 +03:00
|
|
|
|
|
|
|
# Options that control generation of various targets.
|
|
|
|
option(FMT_DOC "Generate the doc target." ON)
|
|
|
|
option(FMT_INSTALL "Generate the install target." ON)
|
|
|
|
option(FMT_TEST "Generate the test target." ON)
|
2014-06-06 17:35:28 +04:00
|
|
|
|
2012-12-07 22:04:01 +04:00
|
|
|
project(FORMAT)
|
|
|
|
|
2014-07-10 20:14:24 +04:00
|
|
|
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
|
|
|
|
2015-03-02 03:07:18 +03:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
|
|
|
|
2013-09-08 00:04:45 +04:00
|
|
|
include(CheckCXXCompilerFlag)
|
2014-05-19 19:02:44 +04:00
|
|
|
check_cxx_compiler_flag(-std=c++11 HAVE_STD_CPP11_FLAG)
|
|
|
|
if (HAVE_STD_CPP11_FLAG)
|
2015-03-19 17:34:50 +03:00
|
|
|
# Check if including cmath works with -std=c++11 and -O3.
|
|
|
|
# It may not in MinGW due to bug http://ehc.ac/p/mingw/bugs/2250/.
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-std=c++11 -O3")
|
|
|
|
check_cxx_source_compiles("
|
|
|
|
#include <cmath>
|
|
|
|
int main() {}" FMT_CPP11_CMATH)
|
2015-05-12 05:37:40 +03:00
|
|
|
# Check if including <unistd.h> works with -std=c++11.
|
|
|
|
# It may not in MinGW due to bug http://sourceforge.net/p/mingw/bugs/2024/.
|
|
|
|
check_cxx_source_compiles("
|
|
|
|
#include <unistd.h>
|
2015-05-12 05:48:30 +03:00
|
|
|
int main() {}" FMT_CPP11_UNISTD_H)
|
|
|
|
if (FMT_CPP11_CMATH AND FMT_CPP11_UNISTD_H)
|
2015-03-19 17:34:50 +03:00
|
|
|
set(CPP11_FLAG -std=c++11)
|
2015-05-12 17:13:12 +03:00
|
|
|
else ()
|
|
|
|
check_cxx_compiler_flag(-std=gnu++11 HAVE_STD_GNUPP11_FLAG)
|
|
|
|
if (HAVE_STD_CPP11_FLAG)
|
|
|
|
set(CPP11_FLAG -std=gnu++11)
|
|
|
|
endif ()
|
2015-03-19 17:34:50 +03:00
|
|
|
endif ()
|
2015-03-19 17:59:12 +03:00
|
|
|
set(CMAKE_REQUIRED_FLAGS )
|
2014-05-19 19:02:44 +04:00
|
|
|
else ()
|
|
|
|
check_cxx_compiler_flag(-std=c++0x HAVE_STD_CPP0X_FLAG)
|
|
|
|
if (HAVE_STD_CPP0X_FLAG)
|
|
|
|
set(CPP11_FLAG -std=c++0x)
|
2014-04-30 18:36:47 +04:00
|
|
|
endif ()
|
2014-05-19 19:02:44 +04:00
|
|
|
endif ()
|
2013-09-08 00:04:45 +04:00
|
|
|
|
2014-04-24 04:21:18 +04:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}
|
2015-02-22 03:02:44 +03:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/support/cmake")
|
2014-04-24 04:21:18 +04:00
|
|
|
|
|
|
|
if (CMAKE_GENERATOR MATCHES "Visual Studio")
|
|
|
|
# If Microsoft SDK is installed create script run-msbuild.bat that
|
|
|
|
# calls SetEnv.cmd to to set up build environment and runs msbuild.
|
|
|
|
# It is useful when building Visual Studio projects with the SDK
|
|
|
|
# toolchain rather than Visual Studio.
|
|
|
|
include(FindSetEnv)
|
|
|
|
if (WINSDK_SETENV)
|
|
|
|
set(MSBUILD_SETUP "call \"${WINSDK_SETENV}\"")
|
|
|
|
endif ()
|
2014-04-29 16:56:47 +04:00
|
|
|
# Set FrameworkPathOverride to get rid of MSB3644 warnings.
|
2014-10-06 19:20:52 +04:00
|
|
|
set(netfxpath "C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0")
|
2014-04-24 04:21:18 +04:00
|
|
|
file(WRITE run-msbuild.bat "
|
|
|
|
${MSBUILD_SETUP}
|
2014-10-06 19:20:52 +04:00
|
|
|
${CMAKE_MAKE_PROGRAM} -p:FrameworkPathOverride=\"${netfxpath}\" %*")
|
2014-04-24 04:21:18 +04:00
|
|
|
endif ()
|
|
|
|
|
2016-01-28 15:33:16 +03:00
|
|
|
set(FMT_SOURCES cppformat/format.cc cppformat/format.h)
|
2014-06-09 20:57:34 +04:00
|
|
|
|
2014-06-09 20:07:27 +04:00
|
|
|
include(CheckSymbolExists)
|
|
|
|
if (WIN32)
|
|
|
|
check_symbol_exists(open io.h HAVE_OPEN)
|
|
|
|
else ()
|
|
|
|
check_symbol_exists(open fcntl.h HAVE_OPEN)
|
|
|
|
endif ()
|
|
|
|
if (HAVE_OPEN)
|
|
|
|
add_definitions(-DFMT_USE_FILE_DESCRIPTORS=1)
|
2016-01-28 15:33:16 +03:00
|
|
|
set(FMT_SOURCES ${FMT_SOURCES} cppformat/posix.cc cppformat/posix.h)
|
2014-06-09 20:07:27 +04:00
|
|
|
endif ()
|
|
|
|
|
2014-09-29 20:27:32 +04:00
|
|
|
if (CPP11_FLAG)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS ${CPP11_FLAG})
|
|
|
|
endif ()
|
|
|
|
|
2015-02-12 01:16:22 +03:00
|
|
|
if (BIICODE)
|
2015-03-02 04:00:53 +03:00
|
|
|
include(support/cmake/biicode.cmake)
|
2015-02-09 12:31:22 +03:00
|
|
|
return()
|
2015-02-12 01:16:22 +03:00
|
|
|
endif ()
|
2015-02-09 12:31:22 +03:00
|
|
|
|
2015-12-10 18:24:23 +03:00
|
|
|
add_library(cppformat ${FMT_SOURCES})
|
2015-12-09 16:52:09 +03:00
|
|
|
if (BUILD_SHARED_LIBS)
|
2015-12-10 18:24:23 +03:00
|
|
|
if (UNIX AND NOT APPLE)
|
|
|
|
# Fix rpmlint warning:
|
|
|
|
# unused-direct-shlib-dependency /usr/lib/libformat.so.1.1.0 /lib/libm.so.6.
|
|
|
|
target_link_libraries(cppformat -Wl,--as-needed)
|
|
|
|
endif ()
|
|
|
|
set(FMT_EXTRA_COMPILE_FLAGS -DFMT_EXPORT)
|
|
|
|
endif ()
|
2015-12-09 16:52:09 +03:00
|
|
|
|
2015-08-04 17:46:15 +03:00
|
|
|
if (FMT_PEDANTIC AND
|
|
|
|
(CMAKE_COMPILER_IS_GNUCXX OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")))
|
2015-12-10 18:24:23 +03:00
|
|
|
set(FMT_EXTRA_COMPILE_FLAGS
|
|
|
|
"${FMT_EXTRA_COMPILE_FLAGS} -Wall -Wextra -Wshadow -pedantic")
|
2012-12-12 09:47:05 +04:00
|
|
|
endif ()
|
2015-03-17 17:56:55 +03:00
|
|
|
|
2015-05-12 17:35:29 +03:00
|
|
|
# If FMT_PEDANTIC is TRUE, then test compilation with both -std=c++11
|
2015-03-17 17:56:55 +03:00
|
|
|
# and the default flags. Otherwise use only the default flags.
|
|
|
|
# The library is distributed in the source form and users have full control
|
|
|
|
# over compile options, so the options used here only matter for testing.
|
2015-05-12 17:35:29 +03:00
|
|
|
if (CPP11_FLAG AND FMT_PEDANTIC)
|
2015-08-04 17:46:15 +03:00
|
|
|
set(FMT_EXTRA_COMPILE_FLAGS "${FMT_EXTRA_COMPILE_FLAGS} ${CPP11_FLAG}")
|
2015-08-19 18:03:17 +03:00
|
|
|
set(FMT_TEST_DEFAULT_FLAGS TRUE)
|
2013-12-10 05:47:07 +04:00
|
|
|
endif ()
|
2012-12-07 21:02:15 +04:00
|
|
|
|
2015-08-04 17:46:15 +03:00
|
|
|
set_target_properties(cppformat
|
|
|
|
PROPERTIES COMPILE_FLAGS "${FMT_EXTRA_COMPILE_FLAGS}")
|
|
|
|
|
2015-12-03 19:15:03 +03:00
|
|
|
set(CPPFORMAT_VERSION 2.1.0)
|
2015-11-23 19:10:02 +03:00
|
|
|
if (NOT CPPFORMAT_VERSION MATCHES "^([0-9]+).([0-9]+).([0-9]+)$")
|
|
|
|
message(FATAL_ERROR "Invalid version format ${CPPFORMAT_VERSION}.")
|
|
|
|
endif ()
|
|
|
|
set(CPACK_PACKAGE_VERSION_MAJOR ${CMAKE_MATCH_1})
|
|
|
|
set(CPACK_PACKAGE_VERSION_MINOR ${CMAKE_MATCH_2})
|
|
|
|
set(CPACK_PACKAGE_VERSION_PATCH ${CMAKE_MATCH_3})
|
|
|
|
|
2015-08-31 16:49:06 +03:00
|
|
|
if (FMT_DOC)
|
2015-08-30 15:23:54 +03:00
|
|
|
add_subdirectory(doc)
|
|
|
|
endif ()
|
2012-12-18 20:44:00 +04:00
|
|
|
|
2015-08-31 16:49:06 +03:00
|
|
|
if (FMT_TEST)
|
2015-08-19 11:41:37 +03:00
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(test)
|
2014-04-18 07:59:06 +04:00
|
|
|
endif ()
|
|
|
|
|
2015-06-23 16:40:22 +03:00
|
|
|
set_target_properties(cppformat PROPERTIES
|
2015-04-08 17:13:06 +03:00
|
|
|
VERSION ${CPPFORMAT_VERSION} SOVERSION ${CPACK_PACKAGE_VERSION_MAJOR})
|
|
|
|
|
2016-01-13 18:14:32 +03:00
|
|
|
set(gitignore ${CMAKE_CURRENT_SOURCE_DIR}/.gitignore)
|
|
|
|
if (EXISTS ${gitignore})
|
2014-04-14 23:54:03 +04:00
|
|
|
# Get the list of ignored files from .gitignore.
|
2016-01-13 18:14:32 +03:00
|
|
|
file (STRINGS ${gitignore} lines)
|
2014-04-14 23:54:03 +04:00
|
|
|
LIST(REMOVE_ITEM lines /doc/html)
|
|
|
|
foreach (line ${lines})
|
2014-05-13 20:28:53 +04:00
|
|
|
string(REPLACE "." "[.]" line "${line}")
|
2014-04-14 23:54:03 +04:00
|
|
|
string(REPLACE "*" ".*" line "${line}")
|
|
|
|
set(ignored_files ${ignored_files} "${line}$" "${line}/")
|
|
|
|
endforeach ()
|
2015-08-31 18:21:59 +03:00
|
|
|
set(ignored_files ${ignored_files}
|
|
|
|
/.git /breathe /format-benchmark sphinx/ .buildinfo .doctrees)
|
2014-04-14 23:54:03 +04:00
|
|
|
|
|
|
|
set(CPACK_SOURCE_GENERATOR ZIP)
|
|
|
|
set(CPACK_SOURCE_IGNORE_FILES ${ignored_files})
|
2016-01-13 18:14:32 +03:00
|
|
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME cppformat-${CPPFORMAT_VERSION})
|
|
|
|
set(CPACK_PACKAGE_NAME cppformat)
|
2014-04-14 23:54:03 +04:00
|
|
|
set(CPACK_RESOURCE_FILE_README ${FORMAT_SOURCE_DIR}/README.rst)
|
|
|
|
include(CPack)
|
|
|
|
endif ()
|
2015-02-24 09:31:30 +03:00
|
|
|
|
2015-04-19 05:15:36 +03:00
|
|
|
# Install targets.
|
2015-08-17 19:48:16 +03:00
|
|
|
if (FMT_INSTALL)
|
2016-01-11 21:01:49 +03:00
|
|
|
include(CMakePackageConfigHelpers)
|
2016-01-13 18:14:32 +03:00
|
|
|
set(config_install_dir lib/cmake/cppformat)
|
|
|
|
set(version_config ${CMAKE_CURRENT_BINARY_DIR}/cppformat-config-version.cmake)
|
|
|
|
set(project_config ${CMAKE_CURRENT_BINARY_DIR}/cppformat-config.cmake)
|
|
|
|
set(targets_export_name cppformat-targets)
|
2016-01-11 21:01:49 +03:00
|
|
|
|
2016-01-13 18:14:32 +03:00
|
|
|
set(FMT_LIB_DIR lib CACHE STRING
|
2015-08-18 16:57:31 +03:00
|
|
|
"Installation directory for libraries, relative to ${CMAKE_INSTALL_PREFIX}.")
|
2016-01-11 21:01:49 +03:00
|
|
|
|
2016-01-13 18:14:32 +03:00
|
|
|
# Add the include directories for both build and install tree.
|
2016-01-11 21:01:49 +03:00
|
|
|
target_include_directories(
|
|
|
|
cppformat PUBLIC
|
2016-01-13 18:14:32 +03:00
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
|
|
$<INSTALL_INTERFACE:include>)
|
2016-01-11 21:01:49 +03:00
|
|
|
|
2016-01-13 18:14:32 +03:00
|
|
|
# Generate the version, config and target files into the build directory.
|
2016-01-11 21:01:49 +03:00
|
|
|
write_basic_package_version_file(
|
2016-01-13 18:14:32 +03:00
|
|
|
${version_config}
|
2016-01-11 21:01:49 +03:00
|
|
|
VERSION ${CPPFORMAT_VERSION}
|
2016-01-13 18:14:32 +03:00
|
|
|
COMPATIBILITY AnyNewerVersion)
|
2016-01-11 21:01:49 +03:00
|
|
|
configure_package_config_file(
|
2016-01-13 18:14:32 +03:00
|
|
|
support/cmake/cppformat-config.cmake.in
|
|
|
|
${project_config}
|
|
|
|
INSTALL_DESTINATION ${config_install_dir})
|
|
|
|
export(TARGETS cppformat FILE ${targets_export_name}.cmake)
|
2016-01-11 21:01:49 +03:00
|
|
|
|
2016-01-13 18:14:32 +03:00
|
|
|
# Install version, config and target files.
|
2016-01-11 21:01:49 +03:00
|
|
|
install(
|
2016-01-13 18:14:32 +03:00
|
|
|
FILES ${project_config} ${version_config}
|
|
|
|
DESTINATION ${config_install_dir})
|
|
|
|
install(EXPORT ${targets_export_name} DESTINATION ${config_install_dir})
|
|
|
|
|
|
|
|
# Install the library and the include file.
|
|
|
|
install(TARGETS cppformat EXPORT ${targets_export_name} DESTINATION ${FMT_LIB_DIR})
|
2016-01-28 15:33:16 +03:00
|
|
|
install(FILES cppformat/format.h DESTINATION include/cppformat)
|
2015-08-17 19:48:16 +03:00
|
|
|
endif ()
|