在Qt中使用SDL可能会出现下面错误error: undefined reference to
qMain(int, char**)'`
这是因为我们在头文件中包含了SDL.h,这里面将main进行了替换,想要调用SDL_main
我们main.cpp中取消这个宏定义即可
cpp
#undef main
在Qt中使用SDL可能会出现下面错误error: undefined reference to
qMain(int, char**)'`
这是因为我们在头文件中包含了SDL.h,这里面将main进行了替换,想要调用SDL_main
我们main.cpp中取消这个宏定义即可
#undef main