mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
changelog: https://github.com/catchorg/Catch2/releases/tag/v3.13.0 Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
732 B
Makefile
23 lines
732 B
Makefile
################################################################################
|
|
#
|
|
# catch2
|
|
#
|
|
################################################################################
|
|
|
|
CATCH2_VERSION = 3.13.0
|
|
CATCH2_SITE = $(call github,catchorg,Catch2,v$(CATCH2_VERSION))
|
|
CATCH2_INSTALL_STAGING = YES
|
|
CATCH2_INSTALL_TARGET = NO
|
|
CATCH2_LICENSE = BSL-1.0
|
|
CATCH2_LICENSE_FILES = LICENSE.txt
|
|
CATCH2_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
|
|
# We force building a static library only as building a dynamic
|
|
# library is not really supported officially:
|
|
# https://github.com/catchorg/Catch2/blob/devel/docs/faq.md#can-i-compile-catch2-into-a-dynamic-library
|
|
CATCH2_CONF_OPTS = \
|
|
-DCATCH_INSTALL_DOCS=OFF \
|
|
-DBUILD_SHARED_LIBS=OFF
|
|
|
|
$(eval $(cmake-package))
|