我下载了一个用于处理DICOM FILES的库 图书馆的树是:
|--include
|-----dicom.h
|-----dicomcfg.h
|--lib
|--------dicomsdl.lib
但我不知道如何使用和内置的Qt Creator 如果有人能帮助我,我将非常感激。
答案 0 :(得分:1)
我假设您使用qmake作为构建系统。 要链接“外部”库,您需要在.pro文件中进行以下更改:
#path to includes directory of your library, qmake will try to find includes there
INCLUDEPATH += /path/to/library/include
#path to pre-compiled library directory
LIBS += -L/path/to/precomp/library
#link your pre-compiled library, -l<library name> w/o .so, .a, .lib, lib- prefix
LIBS += -ldicomsdl
也许您需要使用编译器从源代码构建库。如果编译器不匹配可能会有一些麻烦。