mirror of
https://github.com/fmtlib/fmt.git
synced 2025-12-11 03:07:10 +08:00
74 lines
2.5 KiB
CMake
74 lines
2.5 KiB
CMake
# Generated by CMake 3.1.2
|
|
|
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
|
|
message(FATAL_ERROR "CMake >= 2.6.0 required")
|
|
endif()
|
|
cmake_policy(PUSH)
|
|
cmake_policy(VERSION 2.6)
|
|
#----------------------------------------------------------------
|
|
# Generated CMake target import file.
|
|
#----------------------------------------------------------------
|
|
|
|
# Commands may need to know the format version.
|
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
|
|
if(CMAKE_VERSION VERSION_LESS 3.0.0)
|
|
message(FATAL_ERROR "This file relies on consumers using CMake 3.0.0 or greater.")
|
|
endif()
|
|
|
|
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
|
set(_targetsDefined)
|
|
set(_targetsNotDefined)
|
|
set(_expectedTargets)
|
|
foreach(_expectedTarget cppformat cppformat-header-only)
|
|
list(APPEND _expectedTargets ${_expectedTarget})
|
|
if(NOT TARGET ${_expectedTarget})
|
|
list(APPEND _targetsNotDefined ${_expectedTarget})
|
|
endif()
|
|
if(TARGET ${_expectedTarget})
|
|
list(APPEND _targetsDefined ${_expectedTarget})
|
|
endif()
|
|
endforeach()
|
|
if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
|
|
set(CMAKE_IMPORT_FILE_VERSION)
|
|
cmake_policy(POP)
|
|
return()
|
|
endif()
|
|
if(NOT "${_targetsDefined}" STREQUAL "")
|
|
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
|
|
endif()
|
|
unset(_targetsDefined)
|
|
unset(_targetsNotDefined)
|
|
unset(_expectedTargets)
|
|
|
|
|
|
# Create imported target cppformat
|
|
add_library(cppformat STATIC IMPORTED)
|
|
|
|
set_target_properties(cppformat PROPERTIES
|
|
INTERFACE_COMPILE_OPTIONS "-std=c++11"
|
|
INTERFACE_INCLUDE_DIRECTORIES "/home/viz/Downloads/cppformat"
|
|
)
|
|
|
|
# Create imported target cppformat-header-only
|
|
add_library(cppformat-header-only INTERFACE IMPORTED)
|
|
|
|
set_target_properties(cppformat-header-only PROPERTIES
|
|
INTERFACE_COMPILE_DEFINITIONS "FMT_HEADER_ONLY=1"
|
|
INTERFACE_INCLUDE_DIRECTORIES "/home/viz/Downloads/cppformat"
|
|
)
|
|
|
|
# Import target "cppformat" for configuration "Release"
|
|
set_property(TARGET cppformat APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
set_target_properties(cppformat PROPERTIES
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
|
|
IMPORTED_LOCATION_RELEASE "/home/viz/Downloads/cppformat/build/cppformat/libcppformat.a"
|
|
)
|
|
|
|
# This file does not depend on other imported targets which have
|
|
# been exported from the same project but in a separate export set.
|
|
|
|
# Commands beyond this point should not need to know the version.
|
|
set(CMAKE_IMPORT_FILE_VERSION)
|
|
cmake_policy(POP)
|