Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 254 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 254 Bytes

hello_sdl

SDL quickstart

Building:

# Install packages
sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libsdl2-mixer-dev

# Compile
cc hello_sdl.c -o hello_sdl -lSDL2 -lSDL2_image -lSDL2_mixer -lSDL2_ttf

# Run
./hello_sdl