understanding cmake -part 2-
-
additionally to my first question, see Part 1, I have to change include commands
now
#include <QSqlTableModel>
is not found anymore, I have to have
#include <QtSql/QSqlTableModel>
I am confused since other includes (other than QSql) do not need any additional prefixes.
I do not understand where this is comming from.
J.
-
additionally to my first question, see Part 1, I have to change include commands
now
#include <QSqlTableModel>
is not found anymore, I have to have
#include <QtSql/QSqlTableModel>
I am confused since other includes (other than QSql) do not need any additional prefixes.
I do not understand where this is comming from.
J.
@MasterQ said in understanding cmake -part 2-:
is not found anymore
It was found before? If so - what did you change? What Qt version? How did you add QSql in CMakeLists.txt?
-
@MasterQ said in understanding cmake -part 2-:
is not found anymore
It was found before? If so - what did you change? What Qt version? How did you add QSql in CMakeLists.txt?
@jsulm said in understanding cmake -part 2-:
... what did you change? ...
Please follow the link in my initial post. All information you are asking for should be found.
In short:
What was done: moving source code of a running project into a subdirectory
What version: Qt 6.7.2
Yes, all was working well before the changes!