标签: c++ dll linker runtime-error sfml
当我运行 this代码时,我收到错误“程序无法启动,因为您的计算机缺少sfml-window-2.dll。”我链接了所有库和头文件,就像教程给我看的那样,但我仍然收到此错误
答案 0 :(得分:3)
链接SFML staticaly。使用带-s postfix的库并添加SFML_STATIC来定义。我认为这是在Windows上链接SFML的最佳方式(dll hell!)。