From 8cbdf0a5cb4d9abf0684344a28746a21dfc36ac3 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Fri, 17 Nov 2017 11:10:43 +0100 Subject: CMAKE: allow to compile afb-genskel only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When missing components are detected, allows to not compile the binder if ALLOW_NO_BINDER is ON Change-Id: I0fb27844e3f36d4dd643bdf250f05b4f6769bc53 Signed-off-by: José Bollo --- bindings/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bindings') diff --git a/bindings/CMakeLists.txt b/bindings/CMakeLists.txt index 1a1e9016..509c6cbf 100644 --- a/bindings/CMakeLists.txt +++ b/bindings/CMakeLists.txt @@ -16,6 +16,9 @@ # limitations under the License. ########################################################################### +IF(WITH_BINDER) ADD_SUBDIRECTORY(intrinsics) ADD_SUBDIRECTORY(samples) ADD_SUBDIRECTORY(tutorial) +ENDIF(WITH_BINDER) + -- cgit 1.2.3-korg