mirror of
https://invent.kde.org/multimedia/kdenlive.git
synced 2025-07-16 19:10:12 +00:00

Just like MLT's --avformat-suffix, FFMPEG_SUFFIX allows for definition of custom suffix to append to ffmpeg and ffplay binaries. This is mostly useful for packagers willing to set a default version for FFmpeg dependency, as users can already configure ffmpeg and ffpaly paths via settings. Conflicts: src/monitor/recmonitor.cpp Conflicts: src/recmonitor.cpp
16 lines
394 B
CMake
16 lines
394 B
CMake
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define KDENLIVE_VERSION "@KDENLIVE_VERSION_STRING@"
|
|
|
|
#define MLT_PREFIX "@MLT_PREFIX@"
|
|
#define MLT_MIN_MAJOR_VERSION @MLT_MIN_MAJOR_VERSION@
|
|
#define MLT_MIN_MINOR_VERSION @MLT_MIN_MINOR_VERSION@
|
|
#define MLT_MIN_PATCH_VERSION @MLT_MIN_PATCH_VERSION@
|
|
|
|
#define FFMPEG_SUFFIX "@FFMPEG_SUFFIX@"
|
|
|
|
#cmakedefine HAVE_MALLOC_H 1
|
|
#cmakedefine HAVE_PTHREAD_H 1
|
|
|
|
#endif
|