source: trunk/src/tools/qconfig.cpp@ 8

Last change on this file since 8 was 8, checked in by dmik, 20 years ago

Transferred Qt for OS/2 version 3.3.1-rc5 sources from the CVS

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#include <qglobal.h>
2
3/* Install paths from configure */
4static const char QT_INSTALL_PREFIX [267] = "qt_nstpath=C:\\Qt\\3.3.1";
5static const char QT_INSTALL_BINS [267] = "qt_binpath=C:\\Qt\\3.3.1\\bin";
6static const char QT_INSTALL_DOCS [267] = "qt_docpath=C:\\Qt\\3.3.1\\doc";
7static const char QT_INSTALL_HEADERS[267] = "qt_hdrpath=C:\\Qt\\3.3.1\\include";
8static const char QT_INSTALL_LIBS [267] = "qt_libpath=C:\\Qt\\3.3.1\\lib";
9static const char QT_INSTALL_PLUGINS[267] = "qt_plgpath=C:\\Qt\\3.3.1\\plugins";
10static const char QT_INSTALL_DATA [267] = "qt_datpath=C:\\Qt\\3.3.1";
11static const char QT_INSTALL_TRANSLATIONS [267] = "qt_trnpath=C:\\Qt\\3.3.1\\translations";
12
13/* strlen( "qt_xxxpath=" ) == 11 */
14const char *qInstallPath() { return QT_INSTALL_PREFIX + 11; }
15const char *qInstallPathDocs() { return QT_INSTALL_DOCS + 11; }
16const char *qInstallPathHeaders() { return QT_INSTALL_HEADERS + 11; }
17const char *qInstallPathLibs() { return QT_INSTALL_LIBS + 11; }
18const char *qInstallPathBins() { return QT_INSTALL_BINS + 11; }
19const char *qInstallPathPlugins() { return QT_INSTALL_PLUGINS + 11; }
20const char *qInstallPathData() { return QT_INSTALL_DATA + 11; }
21const char *qInstallPathTranslations() { return QT_INSTALL_TRANSLATIONS + 11; }
22const char *qInstallPathSysconf() { return 0; }
Note: See TracBrowser for help on using the repository browser.