projects
/
bertos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix SD and I2S wizard definitions.
[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