Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
25976dc0
Commit
25976dc0
authored
Apr 12, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix Windows build with cmake 3.17.0
parent
5f80bc77
Changes
1
Hide whitespace changes
Inline
Side-by-side
cmake/modules/FindMLT.cmake
View file @
25976dc0
...
...
@@ -8,6 +8,11 @@
find_package
(
PkgConfig QUIET
)
pkg_check_modules
(
PC_MLT mlt++
)
# Workaround cmake 3.17 issue (dropped .dll extension for library search)
if
(
WIN32
)
list
(
INSERT CMAKE_FIND_LIBRARY_SUFFIXES 0 .dll
)
endif
()
find_path
(
MLT_INCLUDE_DIR
NAMES framework/mlt.h
HINTS
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment