14a735ac51
* NEW: The audio part of the SDL2 component. It's the old gb.sdl.sound without the CD-Rom support, but with a few more features planned. git-svn-id: svn://localhost/gambas/trunk@6778 867c0c6c-44f3-4631-809d-bfa615b0a4ec
26 lines
501 B
Text
26 lines
501 B
Text
dnl ---- configure.ac for gb.sdl
|
|
|
|
m4_include([../version.m4])
|
|
AC_INIT(gambas3-gb-sdl2, GB_VERSION, GB_MAIL, [], GB_URL)
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
GB_INIT(gb.sdl2)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
sdl2, SDL2, gb.sdl2, [src],
|
|
sdl2 ">= 2.0.2" SDL2_image ">= 2.0.0" SDL2_ttf ">= 2.0.12"
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
sdl2audio, SDL2AUDIO, gb.sdl2.audio, [audio],
|
|
sdl2 ">= 2.0.2" SDL2_mixer ">= 2.0.0"
|
|
)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
src/audio/Makefile \
|
|
)
|
|
|
|
GB_PRINT_MESSAGES
|