[PATCH] CMakeLists.txt: fix static build with libusb and -latomic

2022-05-13 Thread Fabrice Fontaine
://autobuild.buildroot.org/results/1ca7cd85ae60ad4797a6d8a83b2fb51d7eab96d9 Signed-off-by: Fabrice Fontaine --- CMakeLists.txt | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b0b87c..b7010ed 100644 --- a/CMakeLists.txt +++ b

[PATCH 1/1] CMakeLists.txt: fix paths when FTDIPP is set

2020-07-17 Thread Fabrice Fontaine
| #include | ^~~~ Fixes: - http://autobuild.buildroot.org/results/1427f44e36752c337791597fab47a1889552a2fe Signed-off-by: Fabrice Fontaine --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5aecafc

[PATCH v2,1/1] cmake: do not check for g++ when FTDIPP is disabled

2020-01-21 Thread Fabrice Fontaine
Signed-off-by: Samuel Martin [Retrieved (and slightly updated) from: https://git.buildroot.net/buildroot/tree/package/libftdi1/0003-cmake-do-not-check-for-g-when-FTDIPP-is-disabled.patch] Signed-off-by: Fabrice Fontaine --- Changes v1 -> v2: - Move project statement from ftdipp/CMakeLists.

Re: [PATCH 1/1] cmake: do not check for g++ when FTDIPP is disabled

2020-01-16 Thread Fabrice Fontaine
Hello Thomas, Le mer. 15 janv. 2020 à 20:40, Thomas Jarosch a écrit : > > Hi Fabrice, > > You wrote on Wed, Oct 02, 2019 at 05:28:33PM +0200: > > diff --git a/CMakeLists.txt b/CMakeLists.txt > > index 71857d0..1e26ed4 100644 > > --- a/CMakeLists.txt > > +++ b/CMakeLists.txt > > @@ -1,5 +1,5 @@ >

[PATCH 1/1] cmake: do not check for g++ when FTDIPP is disabled

2019-10-02 Thread Fabrice Fontaine
Signed-off-by: Samuel Martin [Retrieved (and slightly updated) from: https://git.buildroot.net/buildroot/tree/package/libftdi1/0003-cmake-do-not-check-for-g-when-FTDIPP-is-disabled.patch] Signed-off-by: Fabrice Fontaine --- CMakeLists.txt| 2 +- ftdipp/CMakeLists.txt | 2 ++ 2 files

[PATCH 1/1] cmake: fix FindUSB1.cmake

2019-10-01 Thread Fabrice Fontaine
Make sure all ldflags are correctly set, especially for static build. Signed-off-by: Samuel Martin [Retrieved from: https://git.buildroot.net/buildroot/tree/package/libftdi1/0002-cmake-fix-FindUSB1.cmake.patch] Signed-off-by: Fabrice Fontaine --- cmake/FindUSB1.cmake | 8 ++-- 1 file

[PATCH] python/CMakeLists.txt: fix build with cmake < 3.7

2019-01-19 Thread Fabrice Fontaine
VERSION_GREATER_EQUAL has been added only in cmake 3.7: https://cmake.org/cmake/help/v3.7/release/3.7.html So replace this statement by NOT CMAKE_VERSION VERSION_LESS Fixes: - http://autobuild.buildroot.org/results/1091872e2b77d789e361d1ddefd235c738933c55 Signed-off-by: Fabrice Fontaine