1
General / Re: Problem when compiling SFML basic tutorial program in VScode
« on: June 30, 2023, 04:45:56 pm »A: do you have a floppy drive?QuoteIA:/include/SFML/includeThis seems ode, why do you have an include folder that contains an SFML folder that includes an include folder?
How are you building and how are you running the application?
Please help me. I managed to make cmake work, but how do i use it? I modified my tasks.json file, i don't know if it's better now
{
"version": "2.0.0",
"tasks": [
{
"label": "Compile SFML executable",
"type": "cppbuild",
"command": "g++",
"args": [
"-o",
"${workspaceFolder}/porcoddio.exe",
"-IC:/Users/user/Documents/c++!/diocaneporcodio/include",
"-LC:/lib/",
"${workspaceFolder}/porcoddio.cpp",
"-lsfml-graphics",
"-lsfml-window",
"-lsfml-system"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}