From 10981f961d62b2c65572940a0e333a2630f8af96 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 20 Jan 2021 09:51:18 -0300 Subject: [PATCH] Add Buildroot to readme section Signed-off-by: Uilian Ries --- README.md | 7 +++++++ features/buildroot/package/conan-gtest/conan-gtest.mk | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e772e374..8a1c0572 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,13 @@ Shows how to use conan ``json`` generator with custom script to automate the cre Documentation: https://docs.conan.io/en/laters/integrations/deployment.html + +### [Buildroot](features/buildroot) + +Demonstrate how to build a tiny Linux image using [Buildroot](https://buildroot.org/) and Conan. + +Documentation: https://docs.conan.io/en/latest/integrations/cross_platform/buildroot.html + ## How can I reproduce the build steps? All our examples can be built on Windows, Linux and Mac. If you are interested to reproduce diff --git a/features/buildroot/package/conan-gtest/conan-gtest.mk b/features/buildroot/package/conan-gtest/conan-gtest.mk index 39391dd8..4dab555f 100644 --- a/features/buildroot/package/conan-gtest/conan-gtest.mk +++ b/features/buildroot/package/conan-gtest/conan-gtest.mk @@ -8,7 +8,8 @@ CONAN_GTEST_VERSION = 1.8.1 CONAN_GTEST_INSTALL_STAGING = YES CONAN_GTEST_LICENSE = BSD-3-Clause CONAN_GTEST_LICENSE_FILES = licenses/LICENSE -CONAN_GTEST_SITE = $(call github,bincrafters,conan-gtest,e28f1217907db483521841dcfad9606b1c99a970) -CONAN_GTEST_REFERENCE = gtest/$(CONAN_GTEST_VERSION)@bincrafters/stable +CONAN_GTEST_SITE = $(call github,conan-io,conan-center-index,134dd3b84d629d27ba3474e01b688e9c0f25b9c8) +CONAN_GTEST_REFERENCE = zlib/$(CONAN_GTEST_VERSION)@ +CONAN_ZLIB_SUBDIR = recipes/gtest/all $(eval $(conan-package))