我在VS2012中的简单代码:
#include "stdafx.h"
#include <SDL.h>
#undef main
int main( int argc, char ** argv )
{
SDL_Init( SDL_INIT_EVERYTHING );
SDL_Quit();
return 0;
}
返回以下错误:
1>ConsoleApplication21.obj : error LNK2019: unresolved external symbol _SDL_Init referenced in function _main
1>ConsoleApplication21.obj : error LNK2019: unresolved external symbol _SDL_Quit referenced in function _main
我在项目属性中链接了正确的文件夹,将SDL.lib和SDLmain.lib添加到依赖项中,我不知道出了什么问题。