Registry / other / sfml
library3.0.2vcpkgunverified

Simple and fast multimedia library providing graphics, audio, and windowing.

vcpkg install sfml
INSTALL
IMPORT
SIG · SFML
S
sfml
othercppv3.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

SFML/Graphics.hpp
#include <SFML/Graphics.hpp>

Create and run a basic SFML window

#include <SFML/Graphics.hpp> int main() { sf::RenderWindow window(sf::VideoMode(800, 600), "SFML Window"); while (window.isOpen()) { sf::Event event; while (window.pollEvent(event)) { if (event.type == sf::Event::Closed) window.close(); } window.clear(); window.display(); } return 0; }
Debug
Known issues
gotchaSFML requires system dependencies (OpenGL, audio libraries) that may not be present on all systems.
fix
Install required system packages (e.g., libgl1-mesa-dev, libopenal-dev on Linux).
affects: all
Upgrade
Version history
3.0.2latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
Resources

No resource links recorded.

sfml — pip install sfml · libregistry