From 5dcc36b15c479f532ffd0b5c1330e683fcf8781e Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Thu, 25 Oct 2012 14:32:09 -0700 Subject: Add a -libexecdir option to the configures User applications are those that users run directly, whether it be for development or not. The executable binaries that the user does not usually run but is still required for proper functioning are called "program executables" in Autoconf and they are placed in libexec. This commit adds support for "program executables" in Qt by adding the -libexecdir option to the configures, the qmake variable QT_INSTALL_LIBEXECS (note the plural, to match all other properties), and QLibraryInfo::LibraryExecutables. At the time of this commit, the only expected "program executable" is the QtWebProcess, the WebKit2 helper process from QtWebKit. Change-Id: I66c3a3e0cf7f9d93b5f88f55f18e957faff608fc Reviewed-by: Lars Knoll --- qmake/property.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'qmake/property.cpp') diff --git a/qmake/property.cpp b/qmake/property.cpp index 8379b2a58c..d9e861c2e6 100644 --- a/qmake/property.cpp +++ b/qmake/property.cpp @@ -61,6 +61,7 @@ static const struct { { "QT_INSTALL_DOCS", QLibraryInfo::DocumentationPath, false }, { "QT_INSTALL_HEADERS", QLibraryInfo::HeadersPath, false }, { "QT_INSTALL_LIBS", QLibraryInfo::LibrariesPath, false }, + { "QT_INSTALL_LIBEXECS", QLibraryInfo::LibraryExecutablesPath, false }, { "QT_INSTALL_BINS", QLibraryInfo::BinariesPath, false }, { "QT_INSTALL_TESTS", QLibraryInfo::TestsPath, false }, { "QT_INSTALL_PLUGINS", QLibraryInfo::PluginsPath, false }, -- cgit v1.2.3