Qt Creator error “No such file or directory” when using boost in mongocxx
-
So, i can compile the project now with MSVC, but when I try to make an connection using
mongocxx::instance inst{}; mongocxx::client conn{ mongocxx::uri{"my connection string"} }; bsoncxx::builder::stream::document document{};
it throws the same error as before:
When I delete the libs part in the .pro file, it works again and keeps working, until I include the libs again and try to use something from mongocxx. -
As a test, copy the dlls from that library in the same folder as your executable.
-
Then check that you have all the related dependencies available.
-
I've created a project in Visual Studio 2019 now with the same settings as in Qt Creator, and it works. Included all the header files, libs and dlls and it works. Don't know why this isn't working in Qt Creator. I've tried this but I get the same error. I have to delete the LIBS part and then it runs again. All the dlls are in the folder, but it crashes all the time.