No description
Find a file
2026-01-10 19:17:29 +11:00
.gitignore Implement custom hexcasting plugin 2026-01-10 19:08:49 +11:00
build.sh Implement custom hexcasting plugin 2026-01-10 19:08:49 +11:00
CMakeLists.txt Implement custom hexcasting plugin 2026-01-10 19:08:49 +11:00
HexCasting.cpp Implement custom hexcasting plugin 2026-01-10 19:08:49 +11:00
HexCasting.h Implement custom hexcasting plugin 2026-01-10 19:08:49 +11:00
install.sh Implement custom hexcasting plugin 2026-01-10 19:08:49 +11:00
README.md Add readme 2026-01-10 19:17:29 +11:00

HexCasting Plugin for Qt QML

Build

cmake .
make

Install

Copy or symlink the following files to /usr/lib/qt6/qml/HexCasting/ (or wherever else your Qt6 QML library dir is):

  • libhexcastingplugin.so
  • hexcasting.qmltypes
  • qmldir

Copying example:

mkdir /usr/lib/qt6/qml/HexCasting
cp libhexcastingplugin.so hexcasting.qmltypes qmldir /usr/lib/qt6/qml/HexCasting/

Symlinking example:

ln -s . /usr/lib/qt6/qml/HexCasting