gambas-source-code/gb.gtk/configure.ac
Laurent Carlier 6128fa8d9f [GB.GTK]
* NEW: Add the ability to init gb.gtk component through another component.

[GB.GTK.OPENGL]
* NEW: New component to manage an OpenGL through gb.gtk component

This component is pre-alpha, and doesn't work yet, but the structure is in place.


git-svn-id: svn://localhost/gambas/trunk@2576 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2009-12-31 12:57:51 +00:00

31 lines
418 B
Text

dnl ---- configure.ac for gb.gtk component
AC_INIT(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.gtk)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW
GB_COMPONENT_PKG_CONFIG(
gtk,
GTK,
[GTK+ toolkit],
[src],
gtk+-2.0 ">= 2.10"
)
GB_COMPONENT_PKG_CONFIG(
gtkopengl,
GTKOPENGL,
[GTKglext toolkit],
[opengl],
gtkglext-1.0
)
AC_OUTPUT( \
Makefile \
src/Makefile \
src/ext/Makefile \
src/opengl/Makefile
)