16a8c68b21
Drop host-gtest to avoid the following build failure raised since bump to version 1.12.0 in commita336b731af
and6202251f09
: /usr/bin/install -D -m 0755 /home/giuliobenetti/autobuild/run/instance-1/output-1/build/host-gtest-1.12.0/googlemock/scripts/generator/gmock_gen.py /home/giuliobenetti/autobuild/run/instance-1/output-1/host/bin/gmock_gen /usr/bin/install: cannot stat '/home/giuliobenetti/autobuild/run/instance-1/output-1/build/host-gtest-1.12.0/googlemock/scripts/generator/gmock_gen.py': No such file or directory Fixes: - http://autobuild.buildroot.org/results/6a8fb259760f84c67a3482cc5964c6610f9b70a4 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# gtest
|
|
#
|
|
################################################################################
|
|
|
|
GTEST_VERSION = 1.12.0
|
|
GTEST_SITE = $(call github,google,googletest,release-$(GTEST_VERSION))
|
|
GTEST_INSTALL_STAGING = YES
|
|
GTEST_INSTALL_TARGET = NO
|
|
GTEST_LICENSE = BSD-3-Clause
|
|
GTEST_LICENSE_FILES = LICENSE
|
|
GTEST_CPE_ID_VENDOR = google
|
|
GTEST_CPE_ID_PRODUCT = google_test
|
|
|
|
# While it is possible to build gtest as shared library, using this gtest shared
|
|
# library requires to set some special configure option in the project using
|
|
# gtest.
|
|
# So, force to build gtest as a static library.
|
|
#
|
|
# For further details, refer to the explaination given in the README file from
|
|
# the gtest sources.
|
|
GTEST_CONF_OPTS = -DBUILD_SHARED_LIBS=OFF
|
|
|
|
# Ensure that GTest is compiled with -fPIC to allow linking the static
|
|
# libraries with dynamically linked programs. This is not a requirement
|
|
# for most architectures but is mandatory for ARM.
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
GTEST_CONF_OPTS += -DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GTEST_GMOCK),y)
|
|
GTEST_CONF_OPTS += -DBUILD_GMOCK=ON
|
|
else
|
|
GTEST_CONF_OPTS += -DBUILD_GMOCK=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|