mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 21:53:56 -09:00
For change log, see: https://github.com/jbeder/yaml-cpp/releases/tag/yaml-cpp-0.9.0 Drop upstream patches. Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> [Julien: add link to change log in commit log] Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
565 B
Makefile
21 lines
565 B
Makefile
################################################################################
|
|
#
|
|
# yaml-cpp
|
|
#
|
|
################################################################################
|
|
|
|
YAML_CPP_VERSION = 0.9.0
|
|
YAML_CPP_SITE = $(call github,jbeder,yaml-cpp,yaml-cpp-$(YAML_CPP_VERSION))
|
|
YAML_CPP_INSTALL_STAGING = YES
|
|
YAML_CPP_LICENSE = MIT
|
|
YAML_CPP_LICENSE_FILES = LICENSE
|
|
YAML_CPP_CPE_ID_VALID = YES
|
|
|
|
# Disable testing and parse tools
|
|
YAML_CPP_CONF_OPTS += \
|
|
-DCMAKE_DEBUG_POSTFIX="" \
|
|
-DYAML_CPP_BUILD_TESTS=OFF \
|
|
-DYAML_CPP_BUILD_TOOLS=OFF
|
|
|
|
$(eval $(cmake-package))
|