decklink: Add to the meson Windows build

This commit is contained in:
Sebastian Dröge 2017-01-27 19:26:06 +02:00
parent 4cdd234add
commit dd4f14fd68

View file

@ -20,6 +20,10 @@ if libdl.found() and have_pthread_h
decklink_sources += ['osx/DeckLinkAPIDispatch.cpp']
decklink_ldflags = '-Wl,-framework,CoreFoundation'
build_decklink = true
elif host_machine.system() == 'windows'
decklink_sources += ['win/DeckLinkAPIDispatch.cpp', 'win/DeckLinkAPI_i.c']
decklink_ldflags = '-Wl,-framework,CoreFoundation'
build_decklink = true
else
message('Not building decklink plugin for system ' + host_machine.system())
endif