Add INI file reader module; update test harness.
[bertos.git] / bertos / cfg / depend.h
1 #ifndef CFG_DEPEND_H
2 #define CFG_DEPEND_H
3
4 #include <cfg/compiler.h> // STATIC_ASSERT()
5 /**
6  * Compile-time enforcement of dependencies between configuration options
7  */
8 #define CONFIG_DEPEND(FEATURE, DEPS)  STATIC_ASSERT(!(FEATURE) || !!(DEPS))
9
10 #endif // CFG_DEPEND_H