gambas-source-code/gb.sdl2/configure.ac
Benoît Minisini 14a735ac51 [GB.SDL2.AUDIO]
* 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
2014-12-30 15:56:19 +00:00

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