Browse Source

keystore: meson: use files() for windows files

Otherwise, building on windows can fail with:

    modules/meson.build:407:17: ERROR: File file_crypt_win32.c does not exist.
pull/177/head
Alexandre Janniaux 1 year ago
committed by Steve Lhomme
parent
commit
9b49d8991a
  1. 2
      modules/keystore/meson.build

2
modules/keystore/meson.build

@ -8,7 +8,7 @@ vlc_modules += {
file_keystore_extra_sources = []
file_keystore_extra_deps = []
if host_system == 'windows'
file_keystore_extra_sources += 'file_crypt_win32.c'
file_keystore_extra_sources += files('file_crypt_win32.c')
file_keystore_extra_deps += cc.find_library('crypt32', required: true)
endif
# TODO: Add Android-specific sources

Loading…
Cancel
Save