Kdenlive/Development/WindowsBuild

From KDE Community Wiki
Revision as of 22:54, 8 May 2018 by Vpinon (talk | contribs) (add comments)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Different efforts are currently being led to make building Kdenlive on Microsoft Windows possible.

Cross compiling on GNU/Linux using MXE

git clone https://anongit.kde.org/kdenlive.git # not already done?
git clone https://github.com/vpinon/mxe.git
cat >mxe/settings.mk <<EOF
MXE_TARGETS := x86_64-w64-mingw32.shared.posix
override MXE_PLUGIN_DIRS += plugins/multimedia plugins/kdeframeworks plugins/apps
kdenlive_SOURCE_TREE := $PWD/kdenlive
EOF
cd mxe
make kdenlive
make gdb # useful in case of crash: look for kdenlive PID in task manager, start gdb, run "attach PID"
plugins/apps/deploy_kdenlive.sh

Porting the MLT framework to CMake

To be able to compile Kdenlive with MSVC (Microsoft Visual C++ compiler and libraries toolset). (Elie).