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.
我下载libharu.zip,尝试将其包含到 QT creator c++ 中。但是我在libharu中没有 lib*.a 文件。我需要做什么?它有一些makefile等。
我找到了一些关于 makefile 的信息,但不明白它在 QT creator 中是如何工作的。
nmake -f Makefile.win
我需要什么来运行这个命令?
您将需要一个 .so 或 .a用于链接,在 qt creator 中编辑您的 .pro:
INCLUDEPATH += <path_to_lib>/your_lib_include
当您有 .so 用于链接时:
LIBS += -L<path_to_lib> -l<libname>
当您有 .a 用于链接时:
LIBS += <path_to_lib>/libname.a