Understanding Kdenlive Builds

Asked 2 years ago, Updated 2 years ago, 31 views

Thank you for your help.
Download an open source video editing tool called Kdenlive from Git and
I'd like to rewrite the source code and build it, but I'm having a hard time building it.

What I want to do is as follows.
1) Downloaded the Kdenlive file locally from Git.
2) Rewrite the locally downloaded file (source code).
3) Build the local source code that you rewritten.
4) Use the newly built Kdenlive

[What's being done now]
The build using Craft was successful.
*MinGW was used as the compiler.
OS The operating system is Windows 10.

】What's not done br
Rewriting and building the local Kdenlive source code does not change anything.
Deleting and building the source file does not change the result.
I think it's probably not aimed at the files that were dropped locally.

I think I need an open source meta-build system called Craft and package manager.
Is it possible to build a file that Craft downloaded locally?

Alternatively, I would appreciate it if you could let me know if there is a way to build a locally downloaded Kdenlive regardless of the use of Craft.
I plan to edit the source code using VisualStudio 2019.

Thank you for your cooperation.

·Kdenlive's Git site
https://github.com/KDE/kdenlive

·Craft's Git site
https://github.com/KDE/craft

·Reference URL
https://community.kde.org/Guidelines_an...ce/Windows
https://community.kde.org/Kdenlive/Deve..._using_MXE

c++

2022-09-30 16:59

1 Answers

I can't answer about Craft, but as far as the documentation in the kdenlive repository is concerned, it seems that it can be compiled as usual using general procedures.
(assuming dependency library deployments and compilation environments are in place)

Build and install the projects

INSTALL_PREFIX=$HOME/.local#or any other choice, the easy would be to leave it empty("")
JOBS = 4

# Only if you want to compile MLT manual
cdmlt
mkdir build & cd build
cmake..- DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX
make-j$JOBS
make install
# 'sudo make install' if INSTALL_PREFIX is not user-writable

# Kdenlive
cd../../kdenlive
mkdir build & cd build
cmake..- DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX-DKDE_INSTALL_USE_QT_SYS_PATHS=ON-DRELEASE_BUILD=OFF
make-j$JOBS
make install
# 'sudo make install' if INSTALL_PREFIX is not user-writable


2022-09-30 16:59

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.