|
Last change
on this file was 2, checked in by dmik, 20 years ago |
|
Imported xplatform parts of the official release 3.3.1 from Trolltech
|
-
Property svn:keywords
set to
Id
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | #include <qglobal.h>
|
|---|
| 2 |
|
|---|
| 3 | /* Install paths from configure */
|
|---|
| 4 | static const char QT_INSTALL_PREFIX [267] = "qt_nstpath=E:\\develop\\Qt\\win-3.3.1";
|
|---|
| 5 | static const char QT_INSTALL_BINS [267] = "qt_binpath=E:\\develop\\Qt\\win-3.3.1\\bin";
|
|---|
| 6 | static const char QT_INSTALL_DOCS [267] = "qt_docpath=E:\\develop\\Qt\\win-3.3.1\\doc";
|
|---|
| 7 | static const char QT_INSTALL_HEADERS[267] = "qt_hdrpath=E:\\develop\\Qt\\win-3.3.1\\include";
|
|---|
| 8 | static const char QT_INSTALL_LIBS [267] = "qt_libpath=E:\\develop\\Qt\\win-3.3.1\\lib";
|
|---|
| 9 | static const char QT_INSTALL_PLUGINS[267] = "qt_plgpath=E:\\develop\\Qt\\win-3.3.1\\plugins";
|
|---|
| 10 | static const char QT_INSTALL_DATA [267] = "qt_datpath=E:\\develop\\Qt\\win-3.3.1";
|
|---|
| 11 | static const char QT_INSTALL_TRANSLATIONS [267] = "qt_trnpath=E:\\develop\\Qt\\win-3.3.1\\translations";
|
|---|
| 12 |
|
|---|
| 13 | /* strlen( "qt_xxxpath=" ) == 11 */
|
|---|
| 14 | const char *qInstallPath() { return QT_INSTALL_PREFIX + 11; }
|
|---|
| 15 | const char *qInstallPathDocs() { return QT_INSTALL_DOCS + 11; }
|
|---|
| 16 | const char *qInstallPathHeaders() { return QT_INSTALL_HEADERS + 11; }
|
|---|
| 17 | const char *qInstallPathLibs() { return QT_INSTALL_LIBS + 11; }
|
|---|
| 18 | const char *qInstallPathBins() { return QT_INSTALL_BINS + 11; }
|
|---|
| 19 | const char *qInstallPathPlugins() { return QT_INSTALL_PLUGINS + 11; }
|
|---|
| 20 | const char *qInstallPathData() { return QT_INSTALL_DATA + 11; }
|
|---|
| 21 | const char *qInstallPathTranslations() { return QT_INSTALL_TRANSLATIONS + 11; }
|
|---|
| 22 | const char *qInstallPathSysconf() { return 0; }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.