settings.h
Go to the documentation of this file.
1 #ifndef SETTINGS_H
2 #define SETTINGS_H
3 #define USE_SQLITE3 0
4 #define USE_LIBCLANG 0
5 #define IS_SUPPORTED(x) \
6  ((USE_SQLITE3 && strcmp("USE_SQLITE3",(x))==0) || \
7  (USE_LIBCLANG && strcmp("USE_LIBCLANG",(x))==0) || \
8  0)
9 #endif