无法在 Windows 上将 OSG 与 GDAL 一起使用

Can't use OSG with GDAL on Windows

我在 Windows 10 x64

上工作

IDE: QtCreator 4.8.0 基于 Qt 5.12.0(MSVC 2015,32 位)

如果需要,我的 .pro 文件的内容位于最底部。

有一个最小的 OSG 样本 (main.cpp):

#include <osgDB/ReadFile>
#include <osgViewer/Viewer>
#include <ogrsf_frmts.h>

int main(int argc, char *argv[]) {
   // OGRPoint p; //breakpoint 1
    osg::ref_ptr<osg::Node> root = osgDB::readNodeFile("../resourses/cessna.osg"); //breakpoint 2
    osgViewer::Viewer viewer;
    viewer.setSceneData(root.get());

    return viewer.run();
}

在上面的代码中你可以看到,我在哪里设置了断点。

所以:

如果评论 OGRPoint p;: 它在 "breakpoint 2" 上编译、运行、停止,当我前进时它显示飞机(模型 "cessna.osg")。这是正确的行为。

如果未注释 OGRPoint p;: 它编译、运行并忽略两个断点。它没有显示任何内容。好像我的 main 里什么都没有。如果我在 Linux 上这样做,那么它就可以正常工作。为什么会发生?

.pro文件,如果影响

TEMPLATE = app
TARGET = hello
QT -= gui
CONFIG += c++11 console
CONFIG -= app_bundle

# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

SOURCES += \
main.cpp

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target


#<--------------------- OSG Library
win32 {

    OSG_LIB_DIRECTORY = $$(OSG_BIN)
    OSG_INCLUDE_DIRECTORY = $$(OSG_INCLUDE)

    CONFIG(debug, debug|release) {

        TARGET = $$join(TARGET,,,_d)

        LIBS += -L$$OSG_LIB_DIRECTORY -losgd
        LIBS += -L$$OSG_LIB_DIRECTORY -losgViewerd
        LIBS += -L$$OSG_LIB_DIRECTORY -losgDBd
        LIBS += -L$$OSG_LIB_DIRECTORY -lOpenThreadsd
        LIBS += -L$$OSG_LIB_DIRECTORY -losgUtild
        LIBS += -L$$OSG_LIB_DIRECTORY -losgGAd
    } else {

        LIBS += -L$$OSG_LIB_DIRECTORY -losg
        LIBS += -L$$OSG_LIB_DIRECTORY -losgViewer
        LIBS += -L$$OSG_LIB_DIRECTORY -losgDB
        LIBS += -L$$OSG_LIB_DIRECTORY -lOpenThreads
        LIBS += -L$$OSG_LIB_DIRECTORY -losgUtil
        LIBS += -L$$OSG_LIB_DIRECTORY -losgGA

    }

    INCLUDEPATH += $$OSG_INCLUDE_DIRECTORY
}

unix {

    CONFIG(debug, debug|release) {

        TARGET = $$join(TARGET,,,_d)

        LIBS += -losgd
        LIBS += -losgViewerd
        LIBS += -losgDBd
        LIBS += -lOpenThreadsd

    } else {

        LIBS +=  -losg
        LIBS +=  -losgViewer
        LIBS +=  -losgDB
        LIBS +=  -lOpenThreads

    }
}
#--------------------- OSG Library !>

HEADERS += $$OSG_INCLUDE_DIRECTORY


#<--------------------- GDAL Library
win32 {
    INCLUDEPATH += D:/Interface/Work/Libs/gdal/include/
    LIBS += D:/Interface/Work/Libs/gdal/lib/libgdal-20.dll
}

unix {
    LIBS += -L/usr/local/lib -lgdal
}
#--------------------- GDAL Library !>

问题是库需要 libgdal-20.dll 才能工作。我没有指定 .dll 的路径。所以我通过将 .dll 文件复制到包含二进制文件的文件夹中解决了这个问题。现在可以正常使用了。