diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-24 17:59:53 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-24 17:59:53 +0200 |
commit | 2de0f6ce0d934bad9a80908bbc4a93a837f20eeb (patch) | |
tree | e1a0b95e6ee8846f326273646bd026eb88329097 /cmake/config.cmake.sample | |
parent | 0d28ff2c0f86d7c681a47638b0991f87e337c01b (diff) |
Added possibility to check linux kernel version
Change-Id: I212e1a5a2dc16c6cc2eb78523dbf9496d9da234a
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'cmake/config.cmake.sample')
-rw-r--r-- | cmake/config.cmake.sample | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cmake/config.cmake.sample b/cmake/config.cmake.sample index 66be37c..27d9f17 100644 --- a/cmake/config.cmake.sample +++ b/cmake/config.cmake.sample @@ -44,9 +44,13 @@ set(PROJECT_APP_TEMPLATES_DIR "conf.d") # ---------------------------------- set(CMAKE_BUILD_TYPE "DEBUG") +# Kernel selection if needed. Impose a minimal version. +# ----------------------------------------------- +set (kernel_minimal_version 4.8) + # Compiler selection if needed. Impose a minimal version. # ----------------------------------------------- -set (gcc_minimal_version 4.9) +set (gcc_minimal_version 4.9) # PKG_CONFIG required packages # ----------------------------- |