SFML - Setup on Dev c++

preview_player
Показать описание
Watch the whole video with patience and
Follow all the steps carefully.

If it works then please " Subscribe " the Channel.
Download link:

Рекомендации по теме
Комментарии
Автор

-lsfml-audio
-lsfml-graphics
-lsfml-system
-lsfml-window

k..
Автор

guys be careful about the parameter, notice that i capital is the same as L uncapitalized, so before smfl it should uncapitalized L (l) not capitalized i(I)
other than that this tutorial works great <3

GALUHBUDIMARTHANINGRUM
Автор

Yo bro you are the best I have been struggling with this two days to now but you saved me man thank you very much

houcinechammakh
Автор

thank you sm!! i was so irritated by smfl compilation on ubuntu, this tutorial was so easy to follow and helps me so much <3

dirt
Автор

-lsfml-audio
-lsfml-graphics
-lsfml-system
-lsfml-window

This is correct one. I was confused why my code is not working then i realised that small "L" and capital " i " look same then i correct is to -l(This is small " L ")sfml-audio

vishalkhandate
Автор

I searched everywhere for it and finally i found it Thanx so much its very useful

samghasemi
Автор

Thank you...worked on the first attempt!

frezin
Автор

It's nice working, my problem solved thanks Sir.

moonbatch-team
Автор

>Doesn't talks
>Explains in the most simple and undertandable way
>Give the links on the description
>Leaves

The peak tutorial

koicc
Автор

Thanks bro, but I do something a bit different from this video, instead of project option, I use compiler option, and it still works. Thanks for the tutorial.

fdevstudio
Автор

tks my man <33 it worked on the first attemp xD

baonguyennuwu
Автор

it worked very well, there is no way to give a path to the dlls?

jogosProgramEletronica
Автор

*TO ANYONE who encountered ERROR 25(1 exit returned). Make sure that your sfml extracted file is located on your C drive.

*the letters are SMALL letter "L"
-lsfml-audio
-lsfml-graphics
-lsfml-system
-lsfml-window

*SAMPLE CODE
#include <SFML/Graphics.hpp>

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


while(window.isOpen()){
sf::Event event;

if(event.type == sf::Event::Closed)
window.close();
}

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

}

return 0;
}

bernardseno
Автор

KURWA MAĆ, The best video in the world!

malnormalulo-_-
Автор

can someone help me please for some reason i am getting an error

danielulett
Автор

I did everything, but when I run the code it doesn't make the window. It just compiles and finishes with no errors and does nothing.
Edit-
It works now

confusionprice
Автор

So do you have to do all the linking and stuff everytime you want to start a new project? I got everything to work the first time but when i start a new project i have to do it all over again for it to work. Am i missing something?

matterz
Автор

whenever I try to compile it it says
SFML/Graphics.hpp: No such file or directory

karai
Автор

Still ... it's not working 😭, what should i do

laibaniazi
Автор

i did exactly the same thing in the video, but i got multiple errors, i have no idea why

function `main':
line reference to
line reference to
line reference to
line reference to
line reference to `__imp__ZN2sf5Color5GreenE'
line reference to

[...]

function
ld returned 1 exit status
for target 'testeSFML.exe' failed

daviviegas