You've already forked CoreMP135_buildroot
mirror of
https://github.com/m5stack/CoreMP135_buildroot.git
synced 2026-05-20 11:24:29 -07:00
1ea9c7d781
Handling YAML_BUILD_SHARED_LIBS is not needed since https://github.com/jbeder/yaml-cpp/commit/52a1378e48e15d42a0b755af7146394c6eff998c https://github.com/jbeder/yaml-cpp/releases/tag/yaml-cpp-0.7.0 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
551 B
Makefile
20 lines
551 B
Makefile
################################################################################
|
|
#
|
|
# yaml-cpp
|
|
#
|
|
################################################################################
|
|
|
|
YAML_CPP_VERSION = 0.7.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_VENDOR = yaml-cpp_project
|
|
|
|
# Disable testing and parse tools
|
|
YAML_CPP_CONF_OPTS += \
|
|
-DYAML_CPP_BUILD_TESTS=OFF \
|
|
-DYAML_CPP_BUILD_TOOLS=OFF
|
|
|
|
$(eval $(cmake-package))
|