I have successifully compiled CopperSpice under Visual Studio in a cmake generated project. I now have the copperSpice dlls.
I have a simple example program (below) that links to CSCore1.9.dll and CSGui.dll
I can build and link the program.
However, when I execute it, I have an error :
The application failed to start because the platform plugin was not found or did not load.
Requested Plugin Key: "windows"
I cannot identify qwindows.dll in the CopperSpice package, nor in the binary distribution available at https://download.copperspice.com/copperspice/binary/cs-1.9/
Am I missing something ? Where can I find a compatible version of qwindows.dll in order to execute my program ?
Thanks,
Daniele
======================================================================
Source code:
Code: Select all
#include <QtGui>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
window.resize(320, 240);
window.show();
window.setWindowTitle("Top-level widget");
return app.exec();
}