1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-30 04:39:03 +01:00

GYP: Add missing 'iphlpapi' library to the list of libraries on Windows

This fixes compilation of libtgvoip outside of the Telegram Desktop project.
libtgvoip uses 'GetAdaptersAddresses' function, which requires 'iphlpapi' to be linked with.
Telegram Desktop specifies 'iphlpapi' in tdesktop:Telegram/gyp/settings_win.gypi file.
This commit is contained in:
Dmitry D. Chernov 2019-06-30 01:41:07 +10:00
parent 7c7c9fa624
commit 59e7e5e37b

View File

@ -825,6 +825,7 @@
'libraries': [
'winmm',
'ws2_32',
'iphlpapi',
'kernel32',
'user32',
],