mirror of
https://invent.kde.org/multimedia/kdenlive.git
synced 2025-07-16 19:10:12 +00:00
279 lines
8.4 KiB
CMake
279 lines
8.4 KiB
CMake
# SPDX-License-Identifier: BSD-2-Clause
|
|
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org>, Jean-Baptiste Mardelle <jb@kdenlive.org>, Alberto Villa <avilla@FreeBSD.org>, Albert Astals Cid <aacid@kde.org>, Vincent Pinon <vpinon@kde.org>, Laurent Montel <montel@kde.org>, Vincent Pinon <vincent.pinon@asygn.com>, Nicolas Carion <french.ebook.lover@gmail.com>
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# An odd patch version number means development version, while an even one means
|
|
# stable release. An additional number can be used for bugfix-only releases.
|
|
|
|
# KDE Application Version, managed by release script
|
|
set (RELEASE_SERVICE_VERSION_MAJOR "25")
|
|
set (RELEASE_SERVICE_VERSION_MINOR "11")
|
|
set (RELEASE_SERVICE_VERSION_MICRO "70")
|
|
|
|
set(KDENLIVE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
|
|
|
project(Kdenlive VERSION ${KDENLIVE_VERSION})
|
|
|
|
include(FeatureSummary)
|
|
include(GenerateExportHeader)
|
|
|
|
# Register CMake options
|
|
option(RELEASE_BUILD "Remove Git revision from program version" ON) # To be switched on when releasing.
|
|
option(BUILD_TESTING "Build tests" ON)
|
|
option(CRASH_AUTO_TEST "Auto-generate testcases upon some crashes (uses RTTR library, needed for fuzzing)" OFF)
|
|
option(BUILD_FUZZING "Build fuzzing target" OFF)
|
|
option(BUILD_QCH "Build source code documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF)
|
|
add_feature_info(QCH ${BUILD_QCH} "Source code documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)")
|
|
option(FETCH_OTIO "Use CMake FetchContent to download and build the OpenTimelineIO dependency" ON)
|
|
|
|
# shall we use DBus?
|
|
# enabled per default on Linux & BSD systems
|
|
set(USE_DBUS_DEFAULT OFF)
|
|
if(UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAIKU)
|
|
set(USE_DBUS_DEFAULT ON)
|
|
endif()
|
|
option(USE_DBUS "Build components using DBus" ${USE_DBUS_DEFAULT})
|
|
|
|
option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" OFF)
|
|
|
|
# Minimum versions of main dependencies.
|
|
set(MLT_MIN_MAJOR_VERSION 7)
|
|
set(MLT_MIN_MINOR_VERSION 28)
|
|
set(MLT_MIN_PATCH_VERSION 0)
|
|
set(MLT_MIN_VERSION ${MLT_MIN_MAJOR_VERSION}.${MLT_MIN_MINOR_VERSION}.${MLT_MIN_PATCH_VERSION})
|
|
|
|
# Qt version
|
|
set(QT_MIN_VERSION 6.5.0)
|
|
set(KF_DEP_VERSION "6.3.0")
|
|
|
|
find_package(ECM ${KF_DEP_VERSION} REQUIRED CONFIG)
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules)
|
|
|
|
if (NOT DEFINED QT_MAJOR_VERSION)
|
|
set(QT_MAJOR_VERSION 6)
|
|
endif()
|
|
|
|
# The dependencies (currently only OpenTimelineIO) are located in a
|
|
# subdirectory so their CMake variables are not exposed to the main project.
|
|
#
|
|
# Note that this needs to come before the KDECompilerSettings. OTIO is not
|
|
# compatible with the KDE compiler flag "-fno-operator-names".
|
|
add_subdirectory(deps)
|
|
|
|
## include ECM Modules
|
|
include(KDECompilerSettings NO_POLICY_SCOPE)
|
|
include(ECMInstallIcons)
|
|
include(KDEInstallDirs)
|
|
include(KDECMakeSettings)
|
|
include(ECMOptionalAddSubdirectory)
|
|
include(ECMMarkNonGuiExecutable)
|
|
include(ECMAddAppIcon)
|
|
include(ECMQtDeclareLoggingCategory)
|
|
include(ECMEnableSanitizers)
|
|
include(ECMAddQch)
|
|
include(ECMDeprecationSettings)
|
|
include(ECMQmlModule)
|
|
remove_definitions(-DQT_NO_CAST_FROM_ASCII) # Defined in KDECompilerSettings, but we don't want that yet
|
|
# MLT uses variadic macros upstream and hence the build log gets spamed, so disable the warning
|
|
if(NOT MSVC)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-variadic-macros")
|
|
endif()
|
|
|
|
# KDE Frameworks
|
|
if (NOT DEFINED KF_MAJOR)
|
|
set(KF_MAJOR ${QT_MAJOR_VERSION})
|
|
endif()
|
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kdenlive\")
|
|
find_package(KF${KF_MAJOR} ${KF_DEP_VERSION}
|
|
REQUIRED COMPONENTS
|
|
I18n
|
|
Archive
|
|
Bookmarks
|
|
Codecs
|
|
CoreAddons
|
|
Config
|
|
ConfigWidgets
|
|
KIO
|
|
WidgetsAddons
|
|
NotifyConfig
|
|
NewStuff
|
|
XmlGui
|
|
Notifications
|
|
GuiAddons
|
|
TextWidgets
|
|
IconThemes
|
|
Solid
|
|
FileMetaData
|
|
Purpose
|
|
|
|
OPTIONAL_COMPONENTS
|
|
DocTools
|
|
Crash
|
|
)
|
|
|
|
ecm_set_disabled_deprecation_versions(
|
|
QT ${QT_MIN_VERSION}
|
|
KF ${KF_DEP_VERSION}
|
|
)
|
|
|
|
# Qt targets
|
|
find_package(Qt${QT_MAJOR_VERSION}
|
|
REQUIRED COMPONENTS
|
|
Core Widgets
|
|
Svg
|
|
Quick
|
|
QuickControls2
|
|
Concurrent
|
|
QuickWidgets
|
|
Multimedia
|
|
NetworkAuth
|
|
SvgWidgets
|
|
Xml
|
|
# Test
|
|
)
|
|
|
|
if(USE_DBUS)
|
|
find_package(KF${KF_MAJOR} ${KF_DEP_VERSION} REQUIRED COMPONENTS DBusAddons)
|
|
find_package(Qt${QT_MAJOR_VERSION} REQUIRED COMPONENTS DBus)
|
|
endif()
|
|
add_definitions(-DQT_NO_CAST_TO_ASCII -DQT_NO_URL_CAST_FROM_STRING)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt${QT_MAJOR_VERSION}Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
|
|
|
# MLT
|
|
find_package(MLT ${MLT_MIN_VERSION} REQUIRED)
|
|
set_package_properties(MLT PROPERTIES DESCRIPTION "Multimedia framework"
|
|
URL "https://mltframework.org"
|
|
PURPOSE "Required to do video processing")
|
|
message(STATUS "Found MLT++: ${MLTPP_LIBRARIES}")
|
|
|
|
# LibAV
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(LIBAV REQUIRED IMPORTED_TARGET
|
|
libavformat
|
|
libavcodec
|
|
libswresample
|
|
libavutil
|
|
)
|
|
|
|
# OpenTimelineIO
|
|
if(FETCH_OTIO)
|
|
include_directories(${otio_SOURCE_DIR}/src)
|
|
# Enable exceptions for OTIO and dependencies.
|
|
kde_target_enable_exceptions(opentime PUBLIC)
|
|
kde_target_enable_exceptions(opentimelineio PUBLIC)
|
|
kde_target_enable_exceptions(Imath PUBLIC)
|
|
else()
|
|
find_package(OpenTimelineIO REQUIRED)
|
|
# Work around for header oddity with OTIO and Imath
|
|
find_package(Imath REQUIRED)
|
|
get_target_property(IMATH_INCLUDE_DIRS Imath::Imath INTERFACE_INCLUDE_DIRECTORIES)
|
|
include_directories("${IMATH_INCLUDE_DIRS}/Imath")
|
|
set_package_properties(OpenTimelineIO PROPERTIES
|
|
DESCRIPTION "API and interchange format for editorial timeline information"
|
|
URL "http://opentimeline.io/"
|
|
PURPOSE "Required for OpenTimelineIO import and export")
|
|
endif()
|
|
|
|
# Windows
|
|
include(CheckIncludeFiles)
|
|
check_include_files(malloc.h HAVE_MALLOC_H)
|
|
check_include_files(pthread.h HAVE_PTHREAD_H)
|
|
if(WIN32)
|
|
find_package(DrMinGW)
|
|
set(MLT_PREFIX "..")
|
|
else()
|
|
set(MLT_PREFIX ${MLT_ROOT_DIR})
|
|
endif()
|
|
|
|
# macOS
|
|
if(APPLE)
|
|
set(DATA_INSTALL_PREFIX "")
|
|
else()
|
|
set(DATA_INSTALL_PREFIX "/kdenlive")
|
|
endif()
|
|
|
|
if(KF${KF_MAJOR}DocTools_FOUND)
|
|
add_subdirectory(doc)
|
|
kdoctools_install(po)
|
|
endif()
|
|
|
|
# Get current version.
|
|
set(KDENLIVE_VERSION_STRING "${KDENLIVE_VERSION}")
|
|
if(NOT RELEASE_BUILD AND EXISTS ${CMAKE_SOURCE_DIR}/.git)
|
|
# Probably a Git workspace; determine the revision.
|
|
find_package(Git QUIET)
|
|
if(GIT_FOUND)
|
|
exec_program(${GIT_EXECUTABLE} ${CMAKE_SOURCE_DIR}
|
|
ARGS "log -n 1 --pretty=format:\"%h\""
|
|
OUTPUT_VARIABLE KDENLIVE_GIT_REVISION)
|
|
message(STATUS "Kdenlive Git revision: ${KDENLIVE_GIT_REVISION}")
|
|
set(KDENLIVE_VERSION_STRING "${KDENLIVE_VERSION} (rev. ${KDENLIVE_GIT_REVISION})")
|
|
else()
|
|
message(STATUS "Kdenlive Git revision could not be determined")
|
|
endif()
|
|
endif()
|
|
|
|
if(CRASH_AUTO_TEST)
|
|
if(BUILD_DESIGNERPLUGIN)
|
|
message(SEND_ERROR "The options CRASH_AUTO_TEST and BUILD_DESIGNERPLUGIN do not work together, disable one of both.")
|
|
endif()
|
|
find_package(RTTR 0.9.6 QUIET)
|
|
if(NOT RTTR_FOUND)
|
|
message(STATUS "RTTR not found on system, will download source and build it")
|
|
include(rttr.CMakeLists.txt)
|
|
endif()
|
|
if(BUILD_FUZZING)
|
|
set(ECM_ENABLE_SANITIZERS fuzzer;address)
|
|
endif()
|
|
endif()
|
|
|
|
set(FFMPEG_SUFFIX "" CACHE STRING "FFmpeg custom suffix")
|
|
configure_file(config-kdenlive.h.cmake config-kdenlive.h @ONLY)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
|
|
|
|
# Sources
|
|
add_subdirectory(src)
|
|
add_subdirectory(renderer)
|
|
add_subdirectory(thumbnailer)
|
|
add_subdirectory(data)
|
|
|
|
# Install
|
|
ki18n_install(po)
|
|
|
|
if (BUILD_QCH)
|
|
ecm_install_qch_export(
|
|
TARGETS Kdenlive_QCH
|
|
FILE KdenliveQCHTargets.cmake
|
|
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/kdenlive"
|
|
COMPONENT Devel
|
|
)
|
|
endif()
|
|
|
|
include(GNUInstallDirs)
|
|
install(FILES AUTHORS README.md DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
|
install(DIRECTORY LICENSES DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
|
|
|
ecm_qt_install_logging_categories(
|
|
EXPORT KDENLIVE
|
|
FILE kdenlive.categories
|
|
DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}
|
|
)
|
|
|
|
# Tests
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|
|
if(BUILD_FUZZING AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang"))
|
|
add_subdirectory(fuzzer)
|
|
elseif(BUILD_FUZZING)
|
|
message(STATUS "Fuzzing build was requested but not enabled because compiler is ${CMAKE_CXX_COMPILER_ID} and not Clang")
|
|
endif()
|
|
|
|
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
|
|
|
# pre-commit hook
|
|
include(KDEGitCommitHooks)
|
|
kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
|
|
|