diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-11-17 11:10:43 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-11-17 11:58:13 +0100 |
commit | 8cbdf0a5cb4d9abf0684344a28746a21dfc36ac3 (patch) | |
tree | eb84bacb00a38758234b62ee2bd2dac6dc71cbd4 /bindings/CMakeLists.txt | |
parent | 3a3ee2aa68333fce13fb2611b0165def47573c5d (diff) |
CMAKE: allow to compile afb-genskel only
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 <jose.bollo@iot.bzh>
Diffstat (limited to 'bindings/CMakeLists.txt')
-rw-r--r-- | bindings/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
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) + |