|
Revision 5888, 372 bytes
(checked in by eugene, 11 months ago)
|
- Rectified most paths;
- Moved gui config file into QTGUI_DIR and named config.ini
in order to let advanced editors apply their syntax rules;
- Tiny CodingStyle update.
|
| Line | |
|---|
| 1 | #ifndef CONFIG_H |
|---|
| 2 | #define CONFIG_H |
|---|
| 3 | |
|---|
| 4 | /* Licq Qt-GUI version */ |
|---|
| 5 | #define VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_RELEASE@" |
|---|
| 6 | |
|---|
| 7 | /* Use KDE support */ |
|---|
| 8 | #cmakedefine USE_KDE 1 |
|---|
| 9 | |
|---|
| 10 | /* Use X screensaver support */ |
|---|
| 11 | #cmakedefine USE_SCRNSAVER 1 |
|---|
| 12 | |
|---|
| 13 | /* Existence of some headers */ |
|---|
| 14 | #cmakedefine HAVE_LOCALE_H 1 |
|---|
| 15 | |
|---|
| 16 | /* Define if GPGME is available */ |
|---|
| 17 | #cmakedefine HAVE_LIBGPGME 1 |
|---|
| 18 | |
|---|
| 19 | #endif |
|---|