我已經添加qcustomplot.h/.c文件到我的Qt項目。它們位於:「QT_PROJECT_DIR/QCustomPlot /」。Qt自動生成的表單提供錯誤的源代碼文件路徑
我每次使用設計器Qt Creator中,並建立我ui_mainwindow.h得到這個錯誤:
error: ../../qcustomplot.h: No such file or directory
#include "../../qcustomplot.h"
這當然是真的,因爲它位於:「QT_PROJECT_DIR/QCustomPlot /」
如何更改Qt Designer如何自動生成此路徑?
如果有幫助,這是我的.pro:
#-------------------------------------------------
#
# Project created by QtCreator 2014-01-12T00:44:44
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets widgets opengl printsupport
TARGET = Test
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
QCustomPlot/qcustomplot.cpp
HEADERS += mainwindow.h \
QCustomPlot/qcustomplot.h
FORMS += mainwindow.ui
CONFIG += mobility
MOBILITY =
請粘貼更多的錯誤信息。哪個文件試圖包含qcustomplot.h? – lpapp
我是新來的stackoverflow沒有足夠的'聲譽'莫名其妙,我不能添加評論@Shea Belsky。我按照他的指示解決了問題。我想他可能會忘記他的回答中的一步。以下是我們按照他的步驟一步一步:第1步:打開包含qcustomplot項目的***。ui文件。第2步:右鍵單擊qcustomplot項目並點擊「推動的小工具」!第3步:雙擊QCustomPlot的路徑,然後從../../customplot中將其更改爲QCustomPlot/qcustomplot.cpp。就像這樣: (https://i.stack.imgur.com/yY9Am.png)最後,t – NoSuchFile