forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
15 lines
760 B
C++
15 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"; }
|