diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-08-31 17:47:22 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:25 +0100 |
commit | 507d524703a6264f559594975fe1f87a7338b140 (patch) | |
tree | f39d74d48ca13d660e50ad7c95ad7e958ea44875 | |
parent | 1f9fe3828ac372d2e5310e51730e5facec16ee5e (diff) |
add dependency lua5.3 for deb
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
-rw-r--r-- | conf.d/cmake/00-debian-specific.cmake | 2 | ||||
-rw-r--r-- | conf.d/cmake/config.cmake | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/conf.d/cmake/00-debian-specific.cmake b/conf.d/cmake/00-debian-specific.cmake index 711e105..dbdcdca 100644 --- a/conf.d/cmake/00-debian-specific.cmake +++ b/conf.d/cmake/00-debian-specific.cmake @@ -1,3 +1,3 @@ list(APPEND PKG_REQUIRED_LIST lua-5.3>=5.3) - +set (EXTRA_REQUIRED_LIST lua5.3) set(LUA_CHECKER "luac5.3" "-p" CACHE STRING "LUA compiler") diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index 806f4ca..c331a81 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -75,6 +75,10 @@ set (PKG_REQUIRED_LIST libafbwsc ) +# EXTRA required packages +# ----------------------------- +#set (EXTRA_REQUIRED_LIST a_package) + # Prefix path where will be installed the files # Default: /usr/local (need root permission to write in) # ------------------------------------------------------ |