Bug 492753 - KDE_INSTALL_DATAROOTDIR points to share on Windows
Summary: KDE_INSTALL_DATAROOTDIR points to share on Windows
Status: REPORTED
Alias: None
Product: extra-cmake-modules
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: 6.5.0
Platform: Microsoft Windows Microsoft Windows
: NOR normal
Target Milestone: ---
Assignee: ecm-bugs-null@kde.org
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-09-07 14:35 UTC by Gena
Modified: 2024-09-07 14:35 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gena 2024-09-07 14:35:13 UTC
SUMMARY

In KDEInstallDirs `DATAROOTDIR` points to `share` on Windows. But it should be `<BINDIR>/data`. This is where Qt will look on Windows (See `GenericDataLocation` in https://doc.qt.io/qt-6/qstandardpaths.html). Docs (https://api.kde.org/ecm/kde-module/KDEInstallDirs5.html) also say that `DATAROOTDIR` on Windows points to `<BINDIR>/data`.

The code also looks like it should also use `<BINDIR>/data`: https://invent.kde.org/frameworks/extra-cmake-modules/-/blob/master/kde-modules/KDEInstallDirsCommon.cmake#L271

But the `_define_relative` tries to take this variable from GNUInstallDirs module if `KDE_INSTALL_DIRS_NO_CMAKE_VARIABLES` is not set (by default):
https://invent.kde.org/frameworks/extra-cmake-modules/-/blob/master/kde-modules/KDEInstallDirsCommon.cmake#L93
But In GNUInstallDirs the `DATAROOTDIR` is defined as `share` which leads to the bug.

STEPS TO REPRODUCE
1. `include(KDEInstallDirs)`
2. `message(${KDE_INSTALL_DATAROOTDIR})

OBSERVED RESULT

Prints `share`.

EXPECTED RESULT

Prints `bin/data`.

SOFTWARE/OS VERSIONS
Windows: 10