mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-20 00:50:37 -09:00
- Remove boost dependency (not needed since 0.6) - Add C++11 dependency (needed since 0.6) - Add hash for license file Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
476 B
Makefile
17 lines
476 B
Makefile
################################################################################
|
|
#
|
|
# yaml-cpp
|
|
#
|
|
################################################################################
|
|
|
|
YAML_CPP_VERSION = 0.6.2
|
|
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
|
|
|
|
# Disable testing and parse tools
|
|
YAML_CPP_CONF_OPTS += -DYAML_CPP_BUILD_TOOLS=OFF
|
|
|
|
$(eval $(cmake-package))
|