File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- script : |
24
24
nuget install libpng-msvc14-x64 -ExcludeVersion -OutputDirectory "$(build.BinariesDirectory)"
25
- echo ##vso[task.setvariable variable=MPLBASEDIRLIST]win32_static; $(build.BinariesDirectory)\libpng-msvc14-x64\build\native
26
- echo ##vso[task.setvariable variable=LIBDIR]%LIBDIR%; $(build.BinariesDirectory)\libpng-msvc14-x64\build\native\lib_release
25
+ echo ##vso[task.setvariable variable=CL]/I $(build.BinariesDirectory)\libpng-msvc14-x64\build\native\include
26
+ echo ##vso[task.setvariable variable=LINK]/LIBPATH: $(build.BinariesDirectory)\libpng-msvc14-x64\build\native\lib_release
27
27
echo ##vso[task.prependpath]$(build.BinariesDirectory)\libpng-msvc14-x64\build\native\bin_release
28
28
displayName: 'Install dependencies with nuget'
29
29
Original file line number Diff line number Diff line change @@ -1024,8 +1024,7 @@ def get_extension(self):
1024
1024
default_libraries = (
1025
1025
['png' , 'z' ] if os .name == 'posix' else
1026
1026
# libpng upstream names their lib libpng16.lib, not png.lib.
1027
- # zlib upstream names their lib zlib.lib, not z.lib.
1028
- ['libpng16' , 'zlib' ] if os .name == 'nt' else
1027
+ ['libpng16' ] if os .name == 'nt' else
1029
1028
[]
1030
1029
),
1031
1030
alt_exec = 'libpng-config --ldflags' )
You can’t perform that action at this time.
0 commit comments