summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-05-17 18:39:38 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-05-17 18:39:38 +0200
commitfa6689f9545d33b7d170bffbef67807e8b594e53 (patch)
tree8ff3edb55fa7ff4a77ca41f9d3a46d3ca61132d6
parenteeaa09a9b9045d00484e3f476c577e9117492814 (diff)
Fix: Project name not set.
Wrong variable used, it was PROJECT_NAME that is used in macros.cmake. Change-Id: Ie7e88cde77a826478e027a543a7d5c6210f44360 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--reference/etc/config.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/reference/etc/config.cmake b/reference/etc/config.cmake
index 8b1db3b..2520153 100644
--- a/reference/etc/config.cmake
+++ b/reference/etc/config.cmake
@@ -18,7 +18,7 @@
# Project Info
# ------------------
-set(NAME example)
+set(PROJECT_NAME example)
set(VERSION "0.0")
set(PROJECT_PRETTY_NAME "Example")
set(PROJECT_DESCRIPTION "AGL application example")