ASW Lib
A.D.S. Games SDL Wrapper Library. A library targeted at Allegro4 users who want to switch to SDL3 and use modern c++.
Loading...
Searching...
No Matches
asw

Reliability Rating Security Rating Maintainability Rating

A.D.S. Games SDL Wrapper.

This project started as a way to easily port allegro5 games to SDL3. Now it intends to make it easier to use SDL3 in C++. A primary focus is to allow easy compilation of games using emscripten as well, and has been throughly tested with it.

Usage (CMAKE)

Fetch Content

FetchContent_Declare(
asw
GIT_REPOSITORY https://github.com/adsgames/asw.git
GIT_TAG <tag from latest version>
)
FetchContent_MakeAvailable(asw)

Developing

Building

cmake -B build .
cmake --build build