1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/devel/qmake/files/qconfig.cpp
Mikhail Teterin b1ab77137a This is first step in an attempt to break the Qt port into pieces.
This port installs qmake, which is only needed to build Qt -- not
to use it. It should also help futute work on the Qt port, by not
requiring the developer to recompile qmake as frequently as at
present. This port uses Qt-3.2.1, which is not committed yet.

Discussed with:	kde@
2003-09-05 19:21:30 +00:00

16 lines
760 B
C++

/*
* $FreeBSD$
* Hand-crafted...
* The default prefix (/ usr / local) is dynamicly replaced
* at configure time.
*/
const char *qInstallPath() { return "/usr/local"; }
const char *qInstallPathDocs() { return "/usr/local/share/doc/qt"; }
const char *qInstallPathHeaders() { return "/usr/local/include"; }
const char *qInstallPathLibs() { return "/usr/local/lib"; }
const char *qInstallPathBins() { return "/usr/local/bin"; }
const char *qInstallPathPlugins() { return "/usr/local/plugins"; }
const char *qInstallPathData() { return "/usr/local/share/qt"; }
const char *qInstallPathTranslations() { return "/usr/local/translations"; }
const char *qInstallPathSysconf() { return "/usr/local/etc"; }