OK, I change my pro to to this one
TEMPLATE = app
TARGET =
DESTDIR = bin/
DEPENDPATH += . headers sources
INCLUDEPATH += absolute/path/to/my/headers
CONFIG +=release
CONFIG += qt console
QT +=sql gui network core
# Input
HEADERS += headers/tableeditor.h
SOURCES += sources/tableeditor.cpp sources/main.cpp
RESOURCES += myproject.qrc
RC_FILE += resourcefiles/myproject.rc
TEMPLATE = app
TARGET =
DESTDIR = bin/
DEPENDPATH += . headers sources
INCLUDEPATH += absolute/path/to/my/headers
CONFIG +=release
CONFIG += qt console
QT +=sql gui network core
# Input
HEADERS += headers/tableeditor.h
SOURCES += sources/tableeditor.cpp sources/main.cpp
RESOURCES += myproject.qrc
RC_FILE += resourcefiles/myproject.rc
To copy to clipboard, switch view to plain text mode
and in my main.cpp I have this line
#include "tableeditor.h"
#include "tableeditor.h"
To copy to clipboard, switch view to plain text mode
I get this error
sources\main.cpp|10|tableeditor.h: No such file or directory|
sources\main.cpp|10|tableeditor.h: No such file or directory|
To copy to clipboard, switch view to plain text mode
I am beginning to despair!!!!
Bookmarks