author | kergoth <kergoth> | 2002-11-01 00:10:42 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-01 00:10:42 (UTC) |
commit | 5042e3cf0d3514552769e441f5aad590c8eaf967 (patch) (side-by-side diff) | |
tree | 4a5ea45f3519d981a172ab5275bf38c6fa778dec /qmake/tools/qconfig.cpp | |
parent | 108c1c753e74e989cc13923086996791428c9af4 (diff) | |
download | opie-5042e3cf0d3514552769e441f5aad590c8eaf967.zip opie-5042e3cf0d3514552769e441f5aad590c8eaf967.tar.gz opie-5042e3cf0d3514552769e441f5aad590c8eaf967.tar.bz2 |
Adding qmake in preperation for new build system
-rw-r--r-- | qmake/tools/qconfig.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qmake/tools/qconfig.cpp b/qmake/tools/qconfig.cpp new file mode 100644 index 0000000..433827c --- a/dev/null +++ b/qmake/tools/qconfig.cpp @@ -0,0 +1,17 @@ +/* Install paths from configure */ + +static const char QT_INSTALL_PREFIX [256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2"; +static const char QT_INSTALL_BINS [256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2/bin"; +static const char QT_INSTALL_DOCS [256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2/doc"; +static const char QT_INSTALL_HEADERS[256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2/include"; +static const char QT_INSTALL_LIBS [256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2/lib"; +static const char QT_INSTALL_PLUGINS[256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2/plugins"; +static const char QT_INSTALL_DATA [256] = "/usr/src/coding/projects/userspace/qt-embedded-free-3.1.0-b2"; + +const char *qInstallPath() { return QT_INSTALL_PREFIX; } +const char *qInstallPathDocs() { return QT_INSTALL_DOCS; } +const char *qInstallPathHeaders() { return QT_INSTALL_HEADERS; } +const char *qInstallPathLibs() { return QT_INSTALL_LIBS; } +const char *qInstallPathBins() { return QT_INSTALL_BINS; } +const char *qInstallPathPlugins() { return QT_INSTALL_PLUGINS; } +const char *qInstallPathData() { return QT_INSTALL_DATA; } |