00001 /* Install paths from configure */ 00002 00003 static const char QT_INSTALL_PREFIX [267] = "qt_nstpath=/home/ich/programming/kde/qt-copy"; 00004 static const char QT_INSTALL_BINS [267] = "qt_binpath=/home/ich/programming/kde/qt-copy/bin"; 00005 static const char QT_INSTALL_DOCS [267] = "qt_docpath=/home/ich/programming/kde/qt-copy/doc"; 00006 static const char QT_INSTALL_HEADERS [267] = "qt_hdrpath=/home/ich/programming/kde/qt-copy/include"; 00007 static const char QT_INSTALL_LIBS [267] = "qt_libpath=/home/ich/programming/kde/qt-copy/lib"; 00008 static const char QT_INSTALL_PLUGINS [267] = "qt_plgpath=/home/ich/programming/kde/qt-copy/plugins"; 00009 static const char QT_INSTALL_DATA [267] = "qt_datpath=/home/ich/programming/kde/qt-copy"; 00010 static const char QT_INSTALL_TRANSLATIONS[267] = "qt_trnpath=/home/ich/programming/kde/qt-copy/translations"; 00011 static const char QT_INSTALL_SYSCONF [267] = "qt_cnfpath=/home/ich/programming/kde/qt-copy/etc/settings"; 00012 00013 /* strlen( "qt_xxxpath=" ) == 11 */ 00014 const char *qInstallPath() { return QT_INSTALL_PREFIX + 11; } 00015 const char *qInstallPathDocs() { return QT_INSTALL_DOCS + 11; } 00016 const char *qInstallPathHeaders() { return QT_INSTALL_HEADERS + 11; } 00017 const char *qInstallPathLibs() { return QT_INSTALL_LIBS + 11; } 00018 const char *qInstallPathBins() { return QT_INSTALL_BINS + 11; } 00019 const char *qInstallPathPlugins() { return QT_INSTALL_PLUGINS + 11; } 00020 const char *qInstallPathData() { return QT_INSTALL_DATA + 11; } 00021 const char *qInstallPathTranslations() { return QT_INSTALL_TRANSLATIONS + 11; } 00022 const char *qInstallPathSysconf() { return QT_INSTALL_SYSCONF + 11; }
1.4.2