Note
This Project is a work in progress and is not suitable to be used at this moment.
Star the repository for progress and preview release updates.
A Simple Screensaver application built using SDL3 with support for graphics APIs including OpenGL and Vulkan.
#Clone SDL3 as a submodule along with the project repo
#SDL3 is a mandatory build dependency.
git clone https://github.com/Mahinkumar/Starlit.git --depth=1 --recurse-submodules
cd Starlit
#Build the app
cmake -S . -B build
#Run the app with
#The executable exists at /build directory named Starlit
./build/Starlit
Just update the submodule with
#move to SDL directory
cd SDL
#Pull to fetch latest version
git pull