I need to include header files from sqlite3x library (or from sqlite) in my project. I've just created new project in Qt Creator and added the following lines in .pro-file:
INCLUDEPATH += $$quote(D:/libs/libsqlite3x-2007.10.18) INCLUDEPATH += $$quote(D:/libs/sqlite-amalgamation-3071502)
Then i've tried to include
#include <sqlite3x.hpp>
and compile.
Cannot open include file: 'sqlite3.h': No such file or directory
Why?
If i write
#include <sqlite3.h>
i've got the same error.
When i write this preprocessing directive, Qt Creator gives me an autocompletion and if i press F2 on this line it'll open this file.
INCLUDEPATHitems on separate lines (it's not clear that they are in the question formatting)? - Michael Burr