mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
Qbs is a tool that helps simplify the build process for developing projects across multiple platforms. Qbs can be used for any software project, regardless of programming language, toolkit, or libraries used. Qbs is an all-in-one tool that generates a build graph from a high-level project description (like qmake or CMake) and additionally undertakes the task of executing the commands in the low-level build graph (like make).
11 lines
542 B
C++
11 lines
542 B
C++
--- src/app/qbs-setup-qt/setupqt.cpp.orig 2021-11-28 22:25:29 UTC
|
|
+++ src/app/qbs-setup-qt/setupqt.cpp
|
|
@@ -70,7 +70,7 @@ static QStringList qmakeExecutableNames()
|
|
{
|
|
const QString baseName = HostOsInfo::appendExecutableSuffix(QStringLiteral("qmake"));
|
|
QStringList lst(baseName);
|
|
- if (HostOsInfo::isLinuxHost()) {
|
|
+ if (true || HostOsInfo::isLinuxHost()) {
|
|
// Some distributions ship binaries called qmake-qt5 or qmake-qt4.
|
|
lst << baseName + QLatin1String("-qt5") << baseName + QLatin1String("-qt4");
|
|
}
|