"integration-tests/models/test_flash_mixtral_gptq.py" did not exist on "dbdc587dddf0f16b7c05b28fb632acf9f65f185f"
yaml-cpp-config.cmake.in 1.17 KB
Newer Older
1
2
# - Config file for the yaml-cpp package
# It defines the following variables
3
4
5
6
#  YAML_CPP_INCLUDE_DIR       - include directory
#  YAML_CPP_LIBRARY_DIR       - directory containing libraries
#  YAML_CPP_SHARED_LIBS_BUILT - whether we have built shared libraries or not
#  YAML_CPP_LIBRARIES         - libraries to link against
7

8
9
10
@PACKAGE_INIT@

set_and_check(YAML_CPP_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
11
12
13
set_and_check(YAML_CPP_LIBRARY_DIR "@PACKAGE_CMAKE_INSTALL_LIBDIR@")

# Are we building shared libraries?
14
set(YAML_CPP_SHARED_LIBS_BUILT @YAML_BUILD_SHARED_LIBS@)
15
16

# Our library dependencies (contains definitions for IMPORTED targets)
17
include("${CMAKE_CURRENT_LIST_DIR}/yaml-cpp-targets.cmake")
18
19
20

# These are IMPORTED targets created by yaml-cpp-targets.cmake
set(YAML_CPP_LIBRARIES "@EXPORT_TARGETS@")
21

22
23
24
25
26
27
28
29
30
add_library(yaml-cpp INTERFACE IMPORTED)
target_link_libraries(yaml-cpp INTERFACE yaml-cpp::yaml-cpp)
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.17)
  set_target_properties(yaml-cpp PROPERTIES 
    DEPRECATION "The target yaml-cpp is deprecated and will be removed in version 0.10.0. Use the yaml-cpp::yaml-cpp target instead."
  )
endif()

check_required_components(yaml-cpp)