You've already forked CoreMP135_buildroot
mirror of
https://github.com/m5stack/CoreMP135_buildroot.git
synced 2026-05-20 11:24:29 -07:00
e2385ce1f4
Quoting https://svn.code.sf.net/p/freetel/code/codec2-dev/CMakeLists.txt "# Unittest should be on for dev builds and off for releases." If unittest is enabled libcodec2 depends on speex and libsamplerate. To avoid these dependencies we simply disable unittest. Fixes http://autobuild.buildroot.net/results/da2/da2b6402c8fabd85a9ee728e8dbf7b78c5aa801e/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
598 B
Makefile
21 lines
598 B
Makefile
################################################################################
|
|
#
|
|
# libcodec2
|
|
#
|
|
################################################################################
|
|
|
|
LIBCODEC2_VERSION = 0.7
|
|
LIBCODEC2_SITE = http://files.freedv.org/codec2
|
|
LIBCODEC2_SOURCE = codec2-$(LIBCODEC2_VERSION).tar.xz
|
|
LIBCODEC2_LICENSE = LGPL-2.1
|
|
LIBCODEC2_LICENSE_FILES = COPYING
|
|
LIBCODEC2_INSTALL_STAGING = YES
|
|
LIBCODEC2_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
LIBCODEC2_CONF_OPTS = -DUNITTEST=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCODEC2_EXAMPLES),y)
|
|
LIBCODEC2_CONF_OPTS += -DINSTALL_EXAMPLES=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|