SUMMARY While compiling with -DBUILD_SHARED_LIBS=OFF, getting the: In file included from /Users/cromo/Documents/Sourcecode/vcpkg/buildtrees/kf5newstuff/src/v5.98.0-c49e20fd43.clean/src/widgets/action.cpp:8: /Users/cromo/Documents/Sourcecode/vcpkg/buildtrees/kf5newstuff/src/v5.98.0-c49e20fd43.clean/src/widgets/action.h:68:57: error: 'KF5NewStuffWidgets_EXPORTS' is not defined, evaluates to 0 [-Werror,-Wundef] #if !KNEWSTUFFWIDGETS_ENABLE_DEPRECATED_SINCE(5, 90) || KF5NewStuffWidgets_EXPORTS ^ /Users/cromo/Documents/Sourcecode/vcpkg/buildtrees/kf5newstuff/src/v5.98.0-c49e20fd43.clean/src/widgets/action.cpp:82:35: error: no viable conversion from 'const QList<KNSCore::EntryInternal>' to 'const QList<KNS3::Entry>' Q_EMIT dialogFinished(changedInternalEntries); ^~~~~~~~~~~~~~~~~~~~~~ /Users/cromo/Documents/Sourcecode/vcpkg/vcpkg_installed/arm64-osx/include/qt5/QtCore/qlist.h:161:5: note: candidate constructor not viable: no known conversion from 'const QList<KNSCore::EntryInternal>' to 'const QList<KNS3::Entry> &' for 1st argument QList(const QList<T> &l); ^ /Users/cromo/Documents/Sourcecode/vcpkg/vcpkg_installed/arm64-osx/include/qt5/QtCore/qlist.h:164:12: note: candidate constructor not viable: no known conversion from 'const QList<KNSCore::EntryInternal>' to 'QList<KNS3::Entry> &&' for 1st argument inline QList(QList<T> &&other) noexcept ^ /Users/cromo/Documents/Sourcecode/vcpkg/vcpkg_installed/arm64-osx/include/qt5/QtCore/qlist.h:169:12: note: candidate constructor not viable: no known conversion from 'const QList<KNSCore::EntryInternal>' to 'std::initializer_list<Entry>' for 1st argument inline QList(std::initializer_list<T> args) ^ SOFTWARE/OS VERSIONS macOS: 12.6 Qt Version: 5.15.6
The `KF5NewStuffWidgets_EXPORTS' is not defined, evaluates to 0` issue is likely not specific to static compilation, but rather because of the clang's default -Werror,-Wundef
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/knewstuff/-/merge_requests/208
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/knewstuff/-/merge_requests/209
Git commit df228a446c71efa0816ba24e8a36cd192d07c99e by Alexander Lohnau. Committed on 17/11/2022 at 17:52. Pushed by alex into branch 'master'. Fix static compilation of KF5NewStuffWidgets module The flag is not set during static builds. Thus we need to set the compile definition manually. M +3 -0 src/widgets/CMakeLists.txt M +1 -1 src/widgets/action.h https://invent.kde.org/frameworks/knewstuff/commit/df228a446c71efa0816ba24e8a36cd192d07c99e