summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>2012-05-08 14:45:34 +0200
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>2012-05-08 14:45:34 +0200
commit3877acb3010da8f91b7e90884bf37f0a3df44e03 (patch)
treec4aa411d1cdbd12ff7aa95ab6e8b4c7a330010d4 /config
parent6028848e0cdf13ce3080e353e134bc5bae5827f9 (diff)
downloadlayer_management-3877acb3010da8f91b7e90884bf37f0a3df44e03.tar.gz
LayerManagement: auto-generated config.h was missing include guards
introduced include guards in tample config.h.cmake
Diffstat (limited to 'config')
-rw-r--r--config/res/config.h.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/res/config.h.cmake b/config/res/config.h.cmake
index 829ea46..b6a5343 100644
--- a/config/res/config.h.cmake
+++ b/config/res/config.h.cmake
@@ -17,6 +17,9 @@
* limitations under the License.
*
****************************************************************************/
+#ifndef __CONFIG_H__
+#define __CONFIG_H__
+
#include "Log.h"
// Auto-generated. Do not modify.
@@ -113,3 +116,5 @@
LOG_DEBUG("Config", "WITH_WAYLAND_X11 = ${WITH_WAYLAND_X11}"); \
LOG_DEBUG("Config", "WITH_XTHREADS = ${WITH_XTHREADS}"); \
LOG_DEBUG("Config", "WITH_DLT = ${WITH_DLT}");
+
+#endif // __CONFIG_H__