Commit aef9be3e authored by Marek Belisko's avatar Marek Belisko Committed by Thomas Petazzoni
Browse files

libiqrf: Bump to v0.1.2 + update build system.



v0.1.2 update build system from autotools to cmake.

[Thomas: add patch to ensure the CMake build system only checks for a
C compiler and not a C++ compiler]

Signed-off-by: default avatarMarek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 88418bd2
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
Use only the C language

libirqf is written completely in C, but by default, CMake assumes that
both C and C++ are used, and therefore verifies that a C++ compiler is
installed. This may not necessarily be the case for a C-only package
in Buildroot.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Index: b/src/CMakeLists.txt
===================================================================
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,5 +1,3 @@
-project(iqrf)
-
 set (iqrf_version_major 0)
 set (iqrf_version_minor 1)
 set (iqrf_version_patch 2)
Index: b/CMakeLists.txt
===================================================================
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,3 +1,5 @@
+project(iqrf C)
+
 cmake_minimum_required(VERSION 2.8.1)
 enable_testing()
 
+2 −2
Original line number Diff line number Diff line
@@ -4,11 +4,11 @@
#
################################################################################

LIBIQRF_VERSION = v0.1.0
LIBIQRF_VERSION = v0.1.2
LIBIQRF_SITE = http://github.com/nandra/libiqrf/tarball/$(LIBIQRF_VERSION)
LIBIQRF_INSTALL_STAGING = YES

LIBIQRF_DEPENDENCIES = libusb

$(eval $(autotools-package))
$(eval $(cmake-package))