在Windows上无法使用OSG和GDAL

问题描述 投票:0回答:1

我在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;的情况下:它编译,运行,停止在“断点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 !>
c++ qt gdal
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.