diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-12-16 22:51:16 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-12-16 23:15:09 -0500 |
commit | 1de096a76ca8c06bbd305f1f1c437707e53fbce8 (patch) | |
tree | 79855bc77a950707e40b610538a14b9c592b3813 /sdl2 | |
parent | 28503ef3b65b69f243a6fc10db04f28c1ae34bb1 (diff) |
build: Add SDL2_image detection.
Diffstat (limited to 'sdl2')
-rw-r--r-- | sdl2/config.scm.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sdl2/config.scm.in b/sdl2/config.scm.in index 4ab9a06..99d8be9 100644 --- a/sdl2/config.scm.in +++ b/sdl2/config.scm.in @@ -1,5 +1,9 @@ (define-module (sdl2 config) - #:export (%libsdl2)) + #:export (%libsdl2 + %libsdl2-image)) (define %libsdl2 "@LIBSDL2@") + +(define %libsdl2-image + "@LIBSDL2_IMAGE@") |