I am little new to windows platform and I may be getting something entirely wrong.
I have this simple program in C++ with Qt.
#include <iostream>
#include <QWidget>
#include <QApplication>
int main(int argc, char **argv) {
QApplication app = QApplication(argc, argv);
std::cout << "abc";
app.exec();
return 0;
}
I was able to succesfully build and link it, however when I try to run it: Process finished with exit code -1073741515 (0xC0000135) appears.
I think problem is with the loader so I added C:\Program Files\Qt\6.3.2\mingw_64\lib to the path, did not help.
Any ideas ? I am using CLion, mingw, cmake, Qt6.
Update: Using dependency walker, I got the following result: Error
Also, this is quite new computer (may be a problem?).