How to get the DCMTK library working in Qt Creator?

霸气de小男生 提交于 2019-12-13 02:39:19

问题


I am trying to get DCMTK working in Qt Creator, but I got stuck at step 5. Please let me know if the other steps are wrong.

Tools:

Qt Creator: Qt Creator 3.5.1 (opensource), based on Qt 5.5.1 (MSVC 2013, 32 bit)

Visual Studio: Microsoft Visual Studio Ultimate 2013, version 12.0.40629.00 Update 5

DCMTK: v3.6.0

CMake: v3.3.2

What I did:

  1. I generated the project files using CMake

  1. I opened C:\dcmtk-bin\DCMTK.sln in Visual Studio and built ALL_BUILD

  1. I restarted Visual Studio in admin mode, opened C:\dcmtk-bin\DCMTK.sln and built INSTALL

  1. I started Qt Creator and created a new Qt Console Application

  2. What do I need to add to the .pro file in order to get my project working? I have tried to add code from related questions like this AND this but I can't get rid of errors like

Cannot open include file: 'dcmtk/config/osconfig.h': No such file or directory

OR

LNK1104: cannot open file 'dcmdata.lib'

My main.cpp file contains the following code:

#include <QCoreApplication>
#include <QDebug>
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmdata/dctk.h"
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    QString mystr="Hellow world";
    qDebug() <<mystr;
    return a.exec();
}

回答1:


To use DCMTK in Qt Creator you should add to your project *.pro file information about where DCMTK include files reside, where binaries reside and where linking file resides. So the simplest way is to create corresponding *.pri file and include it to your project file:

DCMTK.pri (default build path for DCMTK library)

DCMTK_PATH = "C:/Program Files (x86)/DCMTK"

INCLUDEPATH += $${DCMTK_PATH}/include
LIBS += -L$${DCMTK_PATH}/bin \
        -L$${DCMTK_PATH}/lib

LIBS += -ldcmtk

Myproject.pro

...

include(DCMTK.pri)


来源:https://stackoverflow.com/questions/33640835/how-to-get-the-dcmtk-library-working-in-qt-creator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!