Fix bertos copy command to work also on Mac OS, and exit when there is error. Use...
[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