Warning, /system/kcm-grub2/config.h.cmake is written in an unsupported language. File is not indexed.

0001 #ifndef CONFIG_H
0002 #define CONFIG_H
0003 
0004 #define KCM_GRUB2_VERSION "@KCM_GRUB2_VERSION@"
0005 
0006 #define HAVE_IMAGEMAGICK @HAVE_IMAGEMAGICK@
0007 #define HAVE_HD @HAVE_HD@
0008 #define HAVE_QAPT @HAVE_QAPT@
0009 #define HAVE_QPACKAGEKIT @HAVE_QPACKAGEKIT@
0010 
0011 //Qt
0012 #include <QFile>
0013 
0014 inline const QString & grubInstallExePath()
0015 {
0016     static const QString str = QFile::decodeName("@GRUB_INSTALL_EXE@");
0017     return str;
0018 }
0019 inline const QString & grubMkconfigExePath()
0020 {
0021     static const QString str = QFile::decodeName("@GRUB_MKCONFIG_EXE@");
0022     return str;
0023 }
0024 inline const QString & grubProbeExePath()
0025 {
0026     static const QString str = QFile::decodeName("@GRUB_PROBE_EXE@");
0027     return str;
0028 }
0029 inline const QString & grubSetDefaultExePath()
0030 {
0031     static const QString str = QFile::decodeName("@GRUB_SET_DEFAULT_EXE@");
0032     return str;
0033 }
0034 inline const QString & grubMenuPath()
0035 {
0036     static const QString str = QFile::decodeName("@GRUB_MENU@");
0037     return str;
0038 }
0039 inline const QString & grubConfigPath()
0040 {
0041     static const QString str = QFile::decodeName("@GRUB_CONFIG@");
0042     return str;
0043 }
0044 inline const QString & grubEnvPath()
0045 {
0046     static const QString str = QFile::decodeName("@GRUB_ENV@");
0047     return str;
0048 }
0049 inline const QString & grubMemtestPath()
0050 {
0051     static const QString str = QFile::decodeName("@GRUB_MEMTEST@");
0052     return str;
0053 }
0054 inline const QString & grubLocalePath()
0055 {
0056     static const QString str = QFile::decodeName("@GRUB_LOCALE@");
0057     return str;
0058 }
0059 
0060 #endif