mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
3ea5ebeebf
doc: move howto to website
919 B
919 B
Linux
cmake -S . -B build_dir \
--install-prefix=/usr/local/ \
-G Ninja \
-DCMAKE_BUILD_TYPE=Release
cmake --build build_dir --parallel 7
cmake --install ./build_dir/
macOS
Install necessary dependencies
brew install pkg-config qt@6 bzip2 zlib \
hunspell opencc libvorbis ffmpeg
Use standard CMake build commands, then use macdeployqt ./goldendict.app
to copy necessary dependencies to the app bundle.
Windows
Steps
Install Qt6(msvc) through the standard installer
Pass those parameters to cmake, the path should be changed to your actual installation paths
-DCMAKE_PREFIX_PATH=F:\Qt\6.4.1\msvc2019_64
Usewindeployqt.exe {your_build_dir}/goldendict.exe
which will copy the qt related .dll
and other necessary files automatically.
Due to the winlibs
are built on Release mode, there are troubles to build GoldenDict on Debug mode.