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
04541ba0
Commit
04541ba0
authored
Sep 05, 2017
by
Vincent Pinon
Browse files
Prefer SDL2 to SDL1 (dropped by FFmpeg and so MLT)
parent
155a8c1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
04541ba0
...
...
@@ -311,9 +311,11 @@ if(Q_WS_X11)
target_link_libraries
(
kdenlive
${
X11_LIBRARIES
}
)
endif
(
Q_WS_X11
)
if
(
SDL_FOUND
)
if
(
SDL2_FOUND
)
target_link_libraries
(
kdenlive
${
SDL2_LIBRARY
}
)
elseif
(
SDL_FOUND
)
target_link_libraries
(
kdenlive
${
SDL_LIBRARY
}
)
endif
(
SDL_FOUND
)
endif
(
SDL
2
_FOUND
)
if
(
LIBV4L2_FOUND
)
include_directories
(
${
LIBV4L2_INCLUDE_DIR
}
)
...
...
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