inflation / jpegxl-rs

GNU General Public License v3.0
56 stars 11 forks source link

🐛 Fix build using windows msvc #43

Closed meowtec closed 5 months ago

meowtec commented 5 months ago

When I build on x86_64-pc-windows-msvc it failed:

LINK : fatal error LNK1181: cannot open input file 'stdc++.lib'

Linking stdc++ Should be excluded for MSVC. c++.lib is unnecessary, too.

codecov[bot] commented 5 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 99.18%. Comparing base (22705d3) to head (5f824ca).

:exclamation: Current head 5f824ca differs from pull request most recent head 971a732. Consider uploading reports for the commit 971a732 to get more accurate results

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #43 +/- ## ======================================= Coverage 99.18% 99.18% ======================================= Files 12 12 Lines 854 854 ======================================= Hits 847 847 Misses 7 7 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

inflation commented 5 months ago

Manually merged. Thank you!