summaryrefslogtreecommitdiffstats
path: root/util/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'util/cmake')
-rw-r--r--util/cmake/helper.py5
-rwxr-xr-xutil/cmake/pro2cmake.py1
2 files changed, 5 insertions, 1 deletions
diff --git a/util/cmake/helper.py b/util/cmake/helper.py
index 28f5efa87a..3a48f63de2 100644
--- a/util/cmake/helper.py
+++ b/util/cmake/helper.py
@@ -349,7 +349,10 @@ _qt_library_map = [
"quickparticles", "Qt6", "Qt::QuickParticles", extra=["COMPONENTS", "QuickParticles"]
),
LibraryMapping(
- "linuxofono_support", "Qt6", "Qt::LinuxOfonoSupport", extra=["COMPONENTS", "LinuxOfonoSupport"]
+ "linuxofono_support",
+ "Qt6",
+ "Qt::LinuxOfonoSupport",
+ extra=["COMPONENTS", "LinuxOfonoSupport"],
)
# qtzlib: No longer supported.
]
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 0d1025988e..1b4df942f9 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -249,6 +249,7 @@ def is_benchmark_project(project_file_path: str = "") -> bool:
# relative to the repo source dir, then it must be a benchmark
return project_relative_path.startswith("tests/benchmarks")
+
def is_manual_test_project(project_file_path: str = "") -> bool:
qmake_conf_path = find_qmake_conf(project_file_path)
qmake_conf_dir_path = os.path.dirname(qmake_conf_path)