7f06ab1316
* NEW: Add the event loop, the framerate limitation, the Draw class. * NEW: 'SDL2_image' will be used for image I/O instead of 'gb.image.io'. git-svn-id: svn://localhost/gambas/trunk@6770 867c0c6c-44f3-4631-809d-bfa615b0a4ec
20 lines
358 B
Text
20 lines
358 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_SEARCH(
|
|
sdl2, SDL2, gb.sdl2, [src],
|
|
sdl2 ">= 2.0.2" SDL2_image ">= 2.0.0" SDL2_ttf ">= 2.0.12"
|
|
)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
)
|
|
|
|
GB_PRINT_MESSAGES
|