summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2019-09-19 08:45:21 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2019-09-19 08:01:05 +0000
commitf4aa7255e6ea6de26f790266b0c7799f49c23212 (patch)
treecba0efaccc0e961a951ff6e07bb0d9caf1ad4580 /util
parentceb29374983456e95c64b31f12d1386729d4bb1d (diff)
Fix casing of public API functions
Use lower case for the function name as that's cmake style. Change-Id: I6c53166aa3a8cece4abe8a485e06bd359fc12a06 Reviewed-by: Leander Beernaert <leander.beernaert@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Qt CMake Build Bot
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index c3e65c9de4..4aa9accdd1 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -353,7 +353,7 @@ def write_add_qt_resource_call(
params += f'{spaces(1)}BASE\n{spaces(2)}"{base_dir}"\n'
add_resource_command = ""
if is_example:
- add_resource_command = "QT6_ADD_RESOURCES"
+ add_resource_command = "qt6_add_resources"
else:
add_resource_command = "add_qt_resource"
output += (