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>2018-10-15 18:22:20 +0200
commit66a510419a9943c4a58f134442837823c68d61b7 (patch)
tree9eed75b7462ca85420b1b30e605d39d9022b9ec8
parentc518e8e03f85fb674625c7076c633936fff31c5e (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")