Hi everybody,
I’m sorry for the question, I know is a simnple question but I don´t find the solution.
The thing is :
I’m working with QT CREATOR 2.5.2 and QT 4.8.0, also I’m working with PCL (Point cloud library 1.6.0). I’m programming onto Windows 7 64 bits. I create a simple form with a button using the QT creator and everything works fine, but if I want to include a header file, the QT Creator doesn´t find the header file.
I edited the .pro file, and I use the INCLUDEPATH += indicate the path but the QT Creator doesn´t find the header file.
my cpp file is :
#include “mainwindow.h”
#include “ui_mainwindow.h”
#include “point_types.h”
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
I’m not find the way to say to the QT Creator which is the include PATH, in this case “c:\Program Files\PCL 1.6.0\include”
Please, anyone can help me, I’m really fustrated.
Advanced thanks
↧