Add missing library in the list of libraries to link with in win32.

Libaria2 use methods in `iphlpapi` on Windows.
This commit is contained in:
Matthieu Gautier 2018-04-23 10:45:08 +02:00
parent f503706914
commit 65969f4999
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ class TargetInfo:
} }
return { return {
'root_path': root_paths[host], 'root_path': root_paths[host],
'extra_libs': ['-lwinmm', '-lws2_32', '-lshlwapi', '-lrpcrt4', '-lmsvcr90'], 'extra_libs': ['-lwinmm', '-lws2_32', '-lshlwapi', '-lrpcrt4', '-lmsvcr90', '-liphlpapi'],
'extra_cflags': ['-DWIN32'], 'extra_cflags': ['-DWIN32'],
'host_machine': { 'host_machine': {
'system': 'Windows', 'system': 'Windows',