Search for command qmake-qt5

This commit is contained in:
Matthieu Gautier 2024-05-06 16:33:10 +02:00
parent 82500c545b
commit 6a9befe8f3
2 changed files with 6 additions and 2 deletions

View File

@ -32,7 +32,11 @@ class NeutralEnv:
self.git_command = self._detect_command("git") self.git_command = self._detect_command("git")
self.make_command = self._detect_command("make") self.make_command = self._detect_command("make")
self.cmake_command = self._detect_command("cmake") self.cmake_command = self._detect_command("cmake")
self.qmake_command = self._detect_command("qmake", required=False) self.qmake_command = self._detect_command(
"qmake",
required=False,
default=[["qmake"], ["qmake-qt5"]],
)
def detect_platform(self): def detect_platform(self):
_platform = platform.system() _platform = platform.system()

View File

@ -493,7 +493,7 @@ class QMakeBuilder(MakeBuilder):
def _configure(self, context): def _configure(self, context):
context.try_skip(self.build_path) context.try_skip(self.build_path)
command = [ command = [
"qmake", *neutralEnv("qmake_command"),
*self.configure_options, *self.configure_options,
*self.env_options, *self.env_options,
self.source_path, self.source_path,