diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-11-07 10:49:03 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-11-07 15:13:11 +0100 |
commit | b418056848a94b68da2b4b40923e888535738c4e (patch) | |
tree | 709bf97d995c56d3dcdd38cc21a174dbd79d26d3 | |
parent | cf912a41bc481f0789e3ed6d83d97176b295881f (diff) |
Missing mandatory variable in the CMake sample file
Change-Id: I3d0f86fe04a79ca4c3523e1675672c0ce64f24f8
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | src/samples.d/config.cmake.sample | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/samples.d/config.cmake.sample b/src/samples.d/config.cmake.sample index 2681113..7f58d07 100644 --- a/src/samples.d/config.cmake.sample +++ b/src/samples.d/config.cmake.sample @@ -32,6 +32,10 @@ set(PROJECT_LANGUAGES "C") # Which directories inspect to find CMakeLists.txt target files # set(PROJECT_SRC_DIR_PATTERN "*") +# Where are stored the project configuration files +# relative to the root project directory +set(PROJECT_CMAKE_CONF_DIR "conf.d") + # Compilation Mode (DEBUG, RELEASE, COVERAGE or PROFILING) # ---------------------------------- #set(BUILD_TYPE "DEBUG") |