diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2021-12-03 22:33:28 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-12-16 18:05:02 +0000 |
commit | 10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f (patch) | |
tree | f8a26e38bb4764474d076199bcb91bb5da8c1fe9 /src/kconfig_compiler | |
parent | bdb7f8bbd2d283fa87386a0fa2a505cb93b4a35c (diff) | |
download | kconfig-10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f.tar.gz kconfig-10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f.tar.bz2 |
WIP: Change the build system to enable building with Qt 6
This was built with:
-DQT_MAJOR_VERSION=6 \
-DEXCLUDE_DEPRECATED_BEFORE_AND_AT=5.90.0 \
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055a00
Move the include(KDEInstallDirs) call before the first find_package(Qt*,
the former is what auto-detects the Qt version, and defaults to 5. This is
needed to be able to build against Qt5 by default.
All unit tests still pass.
Diffstat (limited to 'src/kconfig_compiler')
-rw-r--r-- | src/kconfig_compiler/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kconfig_compiler/CMakeLists.txt b/src/kconfig_compiler/CMakeLists.txt index 0e11ee58..a475b511 100644 --- a/src/kconfig_compiler/CMakeLists.txt +++ b/src/kconfig_compiler/CMakeLists.txt @@ -21,7 +21,7 @@ set_target_properties(kconfig_compiler PROPERTIES OUTPUT_NAME "kconfig_compiler_kf5" ) -target_link_libraries(kconfig_compiler Qt5::Xml) +target_link_libraries(kconfig_compiler Qt${QT_MAJOR_VERSION}::Xml) ecm_mark_nongui_executable(kconfig_compiler) |