qt4core.dll missing

Just tried to compile my first ever win32-program, and Code::Blocks is giving me an error I cant make sense of. This is the code:

1
2
3
4
5
6
#include <windows.h>

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdSHow) {
    MessageBox(NULL, "Hello, World!", "Tutorial", 0);
    return 0;
}


When I try to compile, I get an error saying that Qt4Core.dll is missing. As far as I know, qt has nothing to do with any part of this code, but of course I might be wrong. Do I really need qt for this? Or is it something wrong with my Code::Blocks?

Fafner
Maybe you still have some compiler/linker stuff set from a previous project in code::block's options
Last edited on
Topic archived. No new replies allowed.