1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#ifndef CONFIG_H
#define CONFIG_H
// Define if you have DebconfKDE libraries and header files.
#cmakedefine HAVE_DEBCONFKDE
// Define if your backend have autoremove feature.
#cmakedefine HAVE_AUTOREMOVE
// Define if AppStream is available.
#cmakedefine HAVE_APPSTREAM
// Define if Limba is available.
#cmakedefine HAVE_LIMBA
// Define if screenshot provider
#cmakedefine SCREENSHOT_PROVIDER "@SCREENSHOT_PROVIDER@"
// Define the AppStream categories path.
#cmakedefine AS_CATEGORIES_PATH "@AS_CATEGORIES_PATH@"
// Define the edit origins command.
#cmakedefine EDIT_ORIGNS_DESKTOP_NAME "@EDIT_ORIGNS_DESKTOP_NAME@"
// Define the Apper version.
#cmakedefine APPER_VERSION "@APPER_VERSION@"
#endif //CONFIG_H
|