slackbuilds_ponce/games/supermariowar/supermariowar-2.0_beta1-yaml-cpp-config.cmake
Andrew Clemons 730da78d0b games/supermariowar: Add patch to find newer yaml-cpp.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2017-11-04 07:17:48 +07:00

21 lines
655 B
CMake

find_package(PkgConfig REQUIRED)
pkg_check_modules(YAML-CPP REQUIRED yaml-cpp)
find_path(YAML-CPP_INCLUDE_DIRECTORY
NAMES yaml.h
PATHS ${YAML-CPP_INCLUDE_DIRS} /usr/include/yaml-cpp
)
find_library(YAML-CPP_LIBRARY
NAMES yaml-cpp
PATHS ${YAML-CPP_LIBRARY_DIRS})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(yaml-cpp
FOUND_VAR yaml-cpp_FOUND
REQUIRED_VARS YAML-CPP_LIBRARY YAML-CPP_INCLUDE_DIRECTORY
)
if (yaml-cpp_FOUND)
set(yaml-cpp_INCLUDE_DIRS ${YAML-CPP_INCLUDE_DIRECTORY})
set(yaml-cpp_LIBRARIES ${YAML-CPP_LIBRARY})
endif ()
mark_as_advanced(YAML-CPP_INCLUDE_DIRECTORY YAML-CPP_LIBRARY)