| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | #
 | 
					
						
							|  |  |  | # Copyright(c) 2015 Ruslan Baratov.
 | 
					
						
							|  |  |  | # Distributed under the MIT License (http://opensource.org/licenses/MIT)
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cmake_minimum_required(VERSION 3.1)
 | 
					
						
							| 
									
										
										
										
											2018-08-15 19:34:10 +03:00
										 |  |  | project(spdlog VERSION 1.1.0 LANGUAGES CXX)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | include(CTest)
 | 
					
						
							|  |  |  | include(CMakeDependentOption)
 | 
					
						
							|  |  |  | include(GNUInstallDirs)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-13 01:22:35 +03:00
										 |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | # set default build to release
 | 
					
						
							|  |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2018-08-14 21:33:47 +02:00
										 |  |  | if(NOT CMAKE_BUILD_TYPE)
 | 
					
						
							| 
									
										
										
										
											2018-08-13 01:22:35 +03:00
										 |  |  |     set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose Release or Debug" FORCE)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-14 21:33:47 +02:00
										 |  |  | message(STATUS "Build type: " ${CMAKE_BUILD_TYPE})
 | 
					
						
							| 
									
										
										
										
											2018-08-13 01:22:35 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:55 +02:00
										 |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | # compiler config
 | 
					
						
							|  |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | set(CMAKE_CXX_STANDARD 11)
 | 
					
						
							|  |  |  | set(CMAKE_CXX_STANDARD_REQUIRED ON)
 | 
					
						
							| 
									
										
										
										
											2018-08-10 22:20:52 +02:00
										 |  |  | set(CMAKE_CXX_EXTENSIONS OFF)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
 | 
					
						
							| 
									
										
										
										
											2018-08-14 21:33:47 +02:00
										 |  |  |     add_compile_options("-Wall")
 | 
					
						
							|  |  |  |     add_compile_options("-Wextra")
 | 
					
						
							| 
									
										
										
										
											2018-08-17 00:32:13 +03:00
										 |  |  |     add_compile_options("-Wconversion")
 | 
					
						
							| 
									
										
										
										
											2018-08-15 19:09:37 +03:00
										 |  |  |     add_compile_options("-pedantic")
 | 
					
						
							| 
									
										
										
										
											2018-08-18 02:19:52 +03:00
										 |  |  |     add_compile_options("-Wfatal-errors")
 | 
					
						
							| 
									
										
										
										
											2018-08-17 00:32:13 +03:00
										 |  |  |     
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-13 01:22:35 +03:00
										 |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | # address sanitizers check
 | 
					
						
							|  |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2018-08-12 14:32:07 +02:00
										 |  |  | include(cmake/sanitizers.cmake)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:55 +02:00
										 |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | # spdlog target
 | 
					
						
							|  |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | add_library(spdlog INTERFACE)
 | 
					
						
							| 
									
										
										
										
											2018-08-10 22:20:52 +02:00
										 |  |  | add_library(spdlog::spdlog ALIAS spdlog)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-12 16:10:33 -04:00
										 |  |  | # Check if spdlog is being used directly or via add_subdirectory
 | 
					
						
							|  |  |  | set(SPDLOG_MASTER_PROJECT OFF)
 | 
					
						
							|  |  |  | if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
 | 
					
						
							|  |  |  |   set(SPDLOG_MASTER_PROJECT ON)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | option(SPDLOG_BUILD_EXAMPLES "Build examples" ${SPDLOG_MASTER_PROJECT})
 | 
					
						
							|  |  |  | option(SPDLOG_BUILD_BENCH "Build benchmarks" ${SPDLOG_MASTER_PROJECT})
 | 
					
						
							| 
									
										
										
										
											2018-08-13 01:22:35 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | cmake_dependent_option(SPDLOG_BUILD_TESTING | 
					
						
							| 
									
										
										
										
											2018-09-12 16:10:33 -04:00
										 |  |  |     "Build spdlog tests" ${SPDLOG_MASTER_PROJECT}
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  |     "BUILD_TESTING" OFF
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | target_include_directories( | 
					
						
							|  |  |  |     spdlog
 | 
					
						
							|  |  |  |     INTERFACE
 | 
					
						
							|  |  |  |     "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>"
 | 
					
						
							|  |  |  |     "$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | set(HEADER_BASE "${CMAKE_CURRENT_SOURCE_DIR}/include")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if(SPDLOG_BUILD_EXAMPLES)
 | 
					
						
							|  |  |  |     add_subdirectory(example)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if(SPDLOG_BUILD_TESTING)
 | 
					
						
							|  |  |  |     add_subdirectory(tests)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-13 01:22:35 +03:00
										 |  |  | if(SPDLOG_BUILD_BENCH)
 | 
					
						
							|  |  |  |     add_subdirectory(bench)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:55 +02:00
										 |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | # Install/export targets and files
 | 
					
						
							|  |  |  | #---------------------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # set files and directories
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | set(config_install_dir "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}")
 | 
					
						
							|  |  |  | set(include_install_dir "${CMAKE_INSTALL_INCLUDEDIR}")
 | 
					
						
							|  |  |  | set(pkgconfig_install_dir "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
 | 
					
						
							|  |  |  | set(version_config "${CMAKE_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake")
 | 
					
						
							|  |  |  | set(project_config "${PROJECT_NAME}Config.cmake")
 | 
					
						
							|  |  |  | set(pkg_config "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.pc")
 | 
					
						
							|  |  |  | set(targets_export_name "${PROJECT_NAME}Targets")
 | 
					
						
							|  |  |  | set(namespace "${PROJECT_NAME}::")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # generate package version file
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | include(CMakePackageConfigHelpers)
 | 
					
						
							|  |  |  | write_basic_package_version_file( | 
					
						
							|  |  |  |     "${version_config}" COMPATIBILITY SameMajorVersion
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # configure pkg config file
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | configure_file("cmake/spdlog.pc.in" "${pkg_config}" @ONLY)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # install targets
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | install( | 
					
						
							|  |  |  |     TARGETS spdlog
 | 
					
						
							|  |  |  |     EXPORT "${targets_export_name}"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # install headers
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | install( | 
					
						
							|  |  |  |     DIRECTORY "${HEADER_BASE}/${PROJECT_NAME}"
 | 
					
						
							|  |  |  |     DESTINATION "${include_install_dir}"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # install project version file
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | install( | 
					
						
							|  |  |  |     FILES "${version_config}"
 | 
					
						
							|  |  |  |     DESTINATION "${config_install_dir}"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # install pkg config file
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | install( | 
					
						
							|  |  |  |     FILES "${pkg_config}"
 | 
					
						
							|  |  |  |     DESTINATION "${pkgconfig_install_dir}"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # install project config file
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | install( | 
					
						
							|  |  |  |     EXPORT "${targets_export_name}"
 | 
					
						
							|  |  |  |     NAMESPACE "${namespace}"
 | 
					
						
							|  |  |  |     DESTINATION "${config_install_dir}"
 | 
					
						
							|  |  |  |     FILE ${project_config}
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # export build directory config file
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | export( | 
					
						
							|  |  |  |     EXPORT ${targets_export_name}
 | 
					
						
							|  |  |  |     NAMESPACE "${namespace}"
 | 
					
						
							|  |  |  |     FILE ${project_config}
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:57:07 +02:00
										 |  |  | # register project in CMake user registry
 | 
					
						
							| 
									
										
										
										
											2017-08-24 16:55:06 +02:00
										 |  |  | export(PACKAGE ${PROJECT_NAME})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | file(GLOB_RECURSE spdlog_include_SRCS "${HEADER_BASE}/*.h")
 | 
					
						
							|  |  |  | add_custom_target(spdlog_headers_for_ide SOURCES ${spdlog_include_SRCS})
 |