gambas-source-code/gb.qt5/configure.ac
Benoît Minisini 43f26cd8ff [CONFIGURATION]
* NEW: gb.qt5 component.

[EXAMPLES]
* BUG: Fix WebBrowser example.

[INTERPRETER]
* NEW: Fix compilation of EXEC and SHELL for older bytecode versions.

[GB.DB.FORM]
* NEW: Display the busy mouse cursor while loading SQL data.

[GB.QT4]
* NEW: Support for QT5.

[GB.QT5]
* NEW: Initial version of the QT5 component. Not everything is working. 
  There is no Embedder and TrayIcon controls.


git-svn-id: svn://localhost/gambas/trunk@7062 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2015-05-08 17:40:28 +00:00

45 lines
1,014 B
Text

dnl ---- configure.ac for gb.qt5
m4_include([../version.m4])
AC_INIT(gambas3-gb-qt5, GB_VERSION, GB_MAIL, [], GB_URL)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.qt5)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW
AM_CONDITIONAL(XWINDOW, test x"$have_x" = xyes)
GB_COMPONENT_PKG_CONFIG(
qt5, QT5, gb.qt5, [src],
'Qt5Core >= 5.3.0' Qt5Gui Qt5Widgets Qt5Svg Qt5PrintSupport Qt5X11Extras
)
## GB_COMPONENT_PKG_CONFIG(
## qt5ext, QT5EXT, gb.qt5.ext, [ext],
## 'Qt5Core >= 5.3.0' Qt5Gui Qt5Widgets
## )
## GB_COMPONENT_PKG_CONFIG(
## qt5webkit, QT5WEBKIT, gb.qt5.webkit, [webkit],
## 'Qt5Core >= 5.3.0' Qt5Gui Qt5Widgets Qt5Network Qt5Xml Qt5WebKit Qt5WebKitWidgets Qt5PrintSupport
## )
## GB_COMPONENT_PKG_CONFIG(
## qtopengl, QTOPENGL, gb.qt5.opengl, [opengl],
## 'Qt5Core >= 5.3.0' Qt5Gui Qt5Widgets Qt5OpenGL
## )
MOC=`pkg-config --variable=host_bins Qt5Core`/moc
AC_SUBST(MOC)
AC_OUTPUT( \
Makefile \
src/Makefile \
)
## src/ext/Makefile \
## src/webkit/Makefile \
## src/opengl/Makefile \
GB_PRINT_MESSAGES