yaml-cpp

FORK: A YAML parser and emitter in C++
git clone https://git.neptards.moe/neptards/yaml-cpp.git
Log | Files | Refs | README | LICENSE

yaml-cpp-config.cmake.in (554B)


      1 # - Config file for the yaml-cpp package
      2 # It defines the following variables
      3 #  YAML_CPP_INCLUDE_DIR - include directory
      4 #  YAML_CPP_LIBRARIES    - libraries to link against
      5 
      6 # Compute paths
      7 get_filename_component(YAML_CPP_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
      8 set(YAML_CPP_INCLUDE_DIR "@CONFIG_INCLUDE_DIRS@")
      9 
     10 # Our library dependencies (contains definitions for IMPORTED targets)
     11 include("${YAML_CPP_CMAKE_DIR}/yaml-cpp-targets.cmake")
     12 
     13 # These are IMPORTED targets created by yaml-cpp-targets.cmake
     14 set(YAML_CPP_LIBRARIES "@EXPORT_TARGETS@")