Hello,
I have the following tree structure of a library:
-1.axel
-2.trunk
-3.axel
-4.src
-3.knot
-4.axel
-5.QComplexInvariants
-QComplexInvariants.pro
-3.subdivix
-4.include
-3.realroot
-4.include
-3.linalg
-4.include
-3.shape
-4.include
In QComplexInvariants I have several files which also contains a lot of files from /axel/trunk/subdivix/include,/axel/trunk/realroot/include ,/axel/trunk/linalg/include ,/axel/trunk/shape/include . I had a correctly .pro file for creating the Makefile but I have rewritten it by mistake with an older version and now the path are not correctly included. The old path are something like:
AXELPATH = ../..
INCLUDEPATH += $$AXELPATH/src
DESTDIR = $$AXELPATH/plugins
INCLUDEPATH += ..
INCLUDEPATH += ../../../subdivix/include
INCLUDEPATH += ../../../realroot/include
INCLUDEPATH += ../../../shape/include
LIBS += ../../../realroot/build/librealroot_static.a
LIBS += ../../../shape/build/libshape_static.a
Any suggestions on how to modify them? Thanks in advance, madalina