c0f9e2447d
Currently, host-gtest does not actually build and install gtest libraries or header files; it just installs the gmock_gen stuff. Host gtest can however be used by packages to build and run their unit-tests natively. This patch will now build and install gtest to the host like a normal cmake package. To limit the disruption for existing users of host-gtest, the gmock_gen stuff is still installed (as a post-install hook now). Signed-off-by: Paul Soucy <paul.soucy@sense.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
66 lines
2.0 KiB
Makefile
66 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# gtest
|
|
#
|
|
################################################################################
|
|
|
|
GTEST_VERSION = 1.11.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
|
|
|
|
ifeq ($(BR2_PACKAGE_GTEST_GMOCK),y)
|
|
GTEST_DEPENDENCIES += host-gtest
|
|
endif
|
|
|
|
HOST_GTEST_LICENSE = Apache-2.0
|
|
HOST_GTEST_LICENSE_FILES = googlemock/scripts/generator/LICENSE
|
|
ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
|
HOST_GTEST_PYTHON_VERSION = $(PYTHON3_VERSION_MAJOR)
|
|
HOST_GTEST_DEPENDENCIES += host-python3
|
|
else
|
|
HOST_GTEST_PYTHON_VERSION = $(PYTHON_VERSION_MAJOR)
|
|
HOST_GTEST_DEPENDENCIES += host-python
|
|
endif
|
|
|
|
HOST_GTEST_GMOCK_PYTHONPATH = \
|
|
$(HOST_DIR)/lib/python$(HOST_GTEST_PYTHON_VERSION)/site-packages
|
|
|
|
# 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
|
|
|
|
define HOST_GTEST_POST_INSTALL_PYTHON
|
|
$(INSTALL) -D -m 0755 $(@D)/googlemock/scripts/generator/gmock_gen.py \
|
|
$(HOST_DIR)/bin/gmock_gen
|
|
cp -rp $(@D)/googlemock/scripts/generator/cpp \
|
|
$(HOST_GTEST_GMOCK_PYTHONPATH)
|
|
endef
|
|
|
|
HOST_GTEST_POST_INSTALL_HOOKS += HOST_GTEST_POST_INSTALL_PYTHON
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|