Skip to content
Snippets Groups Projects
Commit bd680c7b authored by Derek Buitenhuis's avatar Derek Buitenhuis
Browse files

msvc: Fix detection of VFW & Avisynth required libs


It should be vfw32.lib with MSVC.

Signed-off-by: default avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parent 1e46c63e
No related branches found
No related tags found
No related merge requests found
......@@ -2137,6 +2137,8 @@ msvc_flags(){
-fno-common) ;;
-fno-signed-zeros) ;;
-lz) echo zlib.lib ;;
-lavifil32) echo vfw32.lib ;;
-lavicap32) echo vfw32.lib user32.lib ;;
-l*) echo ${flag#-l}.lib ;;
*) echo $flag ;;
esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment