无法打开/包含(文件)

问题描述 投票:0回答:1

我正在尝试使用图形库(SFML)进行c ++,我遇到了问题。我使用的是Visual Studio 2017.我观看了许多Youtube教程,并且每次尝试都会遇到同样的错误。我找不到解决方案,因为人们说“文件夹需要在一起”我已经做过了:enter image description here以下是我得到的错误:

E1696无法打开源文件“stdafx.h”c:\ Users \ George \ source \ repos \ Game \ Game \ main.cpp 1

E0065期待一个';' c:\ Users \ George \ source \ repos \ Game \ Game \ main.cpp 5

E1696无法打开源文件“SFML / Graphics.hpp”c:\ Users \ George \ source \ repos \ Game \ Game \ main.cpp 2

C1083无法打开包含文件:'stdafx.h':没有这样的文件或目录c:\ users \ george \ source \ repos \ game \ game \ main.cpp 1

我正在运行的代码(复制,额外):

#include <stdafx.h>
#include <SFML/Graphics.hpp>
using namespace std

int main()
{
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}

之前,代码没有stdafx.h或命名空间std所以我不得不添加它们因为我有其他错误。我非常感谢任何帮助。谢谢

c++ graphics visual-studio-2017 sfml
1个回答
0
投票

几天前弄清楚它,但忘了发布我如何修复它。我下载了32位版本的SFML。在属性中,您需要确保它显示:“Active(win32)”或类似的东西。我有“x64”,这就是为什么它不起作用。希望这能帮助别人解决同样的问题:)

© www.soinside.com 2019 - 2024. All rights reserved.