79 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			CMake
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			CMake
		
	
	
		
			Executable File
		
	
	
	
	
# Generated by CMake
 | 
						|
 | 
						|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.6)
 | 
						|
   message(FATAL_ERROR "CMake >= 2.6.0 required")
 | 
						|
endif()
 | 
						|
cmake_policy(PUSH)
 | 
						|
cmake_policy(VERSION 2.6...3.21)
 | 
						|
#----------------------------------------------------------------
 | 
						|
# 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 fmt::fmt fmt::fmt-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}")
 | 
						|
  unset(_targetsDefined)
 | 
						|
  unset(_targetsNotDefined)
 | 
						|
  unset(_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 fmt::fmt
 | 
						|
add_library(fmt::fmt SHARED IMPORTED)
 | 
						|
 | 
						|
set_target_properties(fmt::fmt PROPERTIES
 | 
						|
  INTERFACE_COMPILE_DEFINITIONS "FMT_LOCALE;FMT_SHARED"
 | 
						|
  INTERFACE_COMPILE_FEATURES "cxx_variadic_templates"
 | 
						|
  INTERFACE_INCLUDE_DIRECTORIES "D:/a/1/s/externals/vcpkg/buildtrees/fmt/src/8.1.1-11f8359597.clean/include"
 | 
						|
)
 | 
						|
 | 
						|
# Create imported target fmt::fmt-header-only
 | 
						|
add_library(fmt::fmt-header-only INTERFACE IMPORTED)
 | 
						|
 | 
						|
set_target_properties(fmt::fmt-header-only PROPERTIES
 | 
						|
  INTERFACE_COMPILE_DEFINITIONS "FMT_HEADER_ONLY=1"
 | 
						|
  INTERFACE_COMPILE_FEATURES "cxx_variadic_templates"
 | 
						|
  INTERFACE_INCLUDE_DIRECTORIES "D:/a/1/s/externals/vcpkg/buildtrees/fmt/src/8.1.1-11f8359597.clean/include"
 | 
						|
)
 | 
						|
 | 
						|
# Import target "fmt::fmt" for configuration "Debug"
 | 
						|
set_property(TARGET fmt::fmt APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
 | 
						|
set_target_properties(fmt::fmt PROPERTIES
 | 
						|
  IMPORTED_IMPLIB_DEBUG "D:/a/1/s/externals/vcpkg/buildtrees/fmt/x64-windows-dbg/fmtd.lib"
 | 
						|
  IMPORTED_LOCATION_DEBUG "D:/a/1/s/externals/vcpkg/buildtrees/fmt/x64-windows-dbg/bin/fmtd.dll"
 | 
						|
  )
 | 
						|
 | 
						|
# 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)
 |