lispgames / cl-sdl2

Common Lisp bindings for SDL2 using C2FFI.
MIT License
304 stars 82 forks source link

Split examples package from the main package #163

Closed lockie closed 2 months ago

lockie commented 1 year ago

This PR fixes the following little annoying problem: every time sdl2 system is loaded, it brings sdl2-examples with it, even though it is an empty package with no symbols defined. By having separate package.lisp from examples, the sample code from readme is still functional, but sdl2-examples is not loaded automatically.

fitzsim commented 2 months ago

Confirmed by testing in my environment. Thank you for the fix.