summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-28 18:16:28 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-28 18:16:28 +0100
commit875fcc7dafe141e17585f51b0e69dc6d411b98d3 (patch)
treeacbbc14c9af85b1bf1132d049b3c806c29c00db7
parentc055b5e9331d94b74026029176ef84283153ca7b (diff)
downloadrockbox-875fcc7daf.tar.gz
rockbox-875fcc7daf.zip
themeeditor: Fix cmake Qt major version.
Use the correct variable. Change-Id: I5c59664cb86b0e4d3731e7c9ad13a276a1720cbc
-rw-r--r--utils/themeeditor/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/themeeditor/CMakeLists.txt b/utils/themeeditor/CMakeLists.txt
index e8e137cd4d..bda33ecae2 100644
--- a/utils/themeeditor/CMakeLists.txt
+++ b/utils/themeeditor/CMakeLists.txt
@@ -127,7 +127,7 @@ set_target_properties(RockboxThemeEditor PROPERTIES AUTORCC ON)
set_target_properties(RockboxThemeEditor PROPERTIES AUTOUIC ON)
target_link_libraries(RockboxThemeEditor
- Qt${QT_MAJOR_VERSION}::Network Qt${QT_MAJOR_VERSION}::Widgets Qt${QT_MAJOR_VERSION}::Core
+ Qt${QT_VERSION_MAJOR}::Network Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Core
skin_parser z)
target_include_directories(RockboxThemeEditor PRIVATE models graphics gui qtfindreplacedialog quazip)
target_compile_definitions(RockboxThemeEditor PRIVATE FINDREPLACE_NOLIB)