我正在使用 boost 通用图像库,它需要 libpng。我构建了 libpng 并获得了文件 libpng.lib、zlib.lib 和 libpngd.lib。当我尝试编译我的项目时,Visual Studio 给出了一个致命错误
fatal error LNK1120: 21 unresolved externals
带有一堆未解析的外部符号,如
_png_set_sig_bytes
和 _png_read_row
。这里发生了什么以及如何解决? 最佳答案
来自 MSDN:
https://msdn.microsoft.com/en-us/library/ba1z7822.aspx?f=255&MSPPError=-2147217396
To add .lib files as linker input in the development environment
Open the project's Property Pages dialog box. For details, see Setting Visual C++ Project Properties.
Click the Linker folder.
Click the Input property page.
Modify the Additional Dependencies property.
你必须这样做;在 .exe 的链接命令中明确指定“libpng.lib”、“zlib.lib”和“libpngd.lib”。
关于c++ - 如何在 Visual Studio 中使用 libpng?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33534498/