diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-12-17 22:54:33 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-12-17 22:54:33 -0500 |
commit | 4129070b6a39ffba8e7cf8860c40a831235d9f62 (patch) | |
tree | 3ec603be33d93dfde4e824d357ea9b6be9d49dc5 /sdl2 | |
parent | 9400aa25bcd5810766d3d32405183e8d5b0f2474 (diff) |
build: Add SDL2_mixer 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 f43a2e7..fb6194a 100644 --- a/sdl2/config.scm.in +++ b/sdl2/config.scm.in @@ -1,7 +1,8 @@ (define-module (sdl2 config) #:export (%libsdl2 %libsdl2-image - %libsdl2-ttf)) + %libsdl2-ttf + %libsdl2-mixer)) (define %libsdl2 "@LIBSDL2@") @@ -11,3 +12,6 @@ (define %libsdl2-ttf "@LIBSDL2_TTF@") + +(define %libsdl2-mixer + "@LIBSDL2_MIXER@") |