Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我以前只使用过 Visual Studio 来开发 C++,但我刚刚搬到 netbeans 并且遇到了一些问题。
我安装了 mingw,以便我的项目能够编译,但我不知道如何向其中添加外部库。我想使用静态库,而不是 dll。
我特别关注的库是libpng
我希望这不是太特定于 IDE,我也想知道如何准备库。
视窗操作系统。
我或多或少地想通了。我在 zlib 源目录上使用了为 msys 和 mingw 配置的 cmake gui,然后在输出目录上运行 msys和。之后我在 libpng 上做了同样的事情,但是我必须添加一些变量来指向 cmake 中的 zlib 包含和库目录。makeg++gccmakemake install
make
g++
gcc
make install
然后在 netbeans 中,我右键单击项目上的>>属性,并为这两个库中的每一个添加了包含和库位置。我也可以将文件复制到我的 mingw 目录中。
现在我只是被这个问题所困扰。