I’m going mad on this stupid problem.
I’ve a tree like this:
src
|--- sources
|--- one.cpp
|--- two.cpp
|--- sources.pro
|--- headers
|--- one.h
|--- two.hpp
|--- headers.pro
|--- src.pro
I tried EVERYTHING to make it look in both the folders, but somehow I can’t get it working. I don’t know much about QMake, but I tought it was easy. And I was wrong.
So actually I ended up having the src.pro file in this way:
QT += dbus
CONFIG += warn_on
DEFINES = QT_FATAL_WARNINGS QT_NO_DEBUG_OUTPUT
devel {
DEFINES -= QT_NO_DEBUG_OUTPUT
}
OBJECTS_DIR += build
MOC_DIR += build
TARGET = example
[...]
TEMPLATE = subdirs
SUBDIRS = sources \
headers
[...]
And the sources.pro and headers.pro in this way:
sources.pro
SOURCES = one.cpp \
two.cpp
headers.pro
HEADERS = one.h \
two.hpp
And of course (not) the problem is that it still doesn’t see the stuff all together.
I looked at the documentation too, but I swear I don’t get it lol
It’s been awhile since I’ve had to use qmake (long live CMake!), but can’t you just set the
INCLUDEPATHvariable in your.profile, i.e., do something like:Then just point the entry in your
SOURCESvar at thesourcesfolder like so:It’s not clear to me why you’re using
TEMPLATE = subdirs. It doesn’t seem like it should be necessary in your case. Can’t you just useTEMPLATE = app(orTEMPLATE = lib) and be done with it? Something like this: