gambas-source-code/gb.qt.kde/configure.ac
Benoît Minisini 3df72165af [CONFIGURATION]
* NEW: The syntax of pkg-config detection macro has changed to better use 
  the pkg-config possibilities.

[DEVELOPMENT ENVIRONMENT]
* BUG: Correctly update .startup file when closing the project property 
  dialog.
* BUG: Don't crash when the debugger stops inside the form generated code.
* BUG: Update the project templates to the 3.0 syntax.

[GB.QTE]
* BUG: Make this component compile correctly.
* BUG: Remove the automake warning.

[GB.QT4]
* NEW: Upgrade to the new QT 4 syntax in many places.
* NEW: Menu class has been redesigned to use the new QAction class. Not 
  tested yet.
* NEW: Standard controls work better.


git-svn-id: svn://localhost/gambas/trunk@1344 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-04-29 13:40:55 +00:00

39 lines
879 B
Text

dnl ---- configure.ac for gb.qt.kde
AC_INIT(configure.ac)
GB_INIT(gb.qt.kde)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW
GB_FIND_QT_MOC
GB_COMPONENT_SEARCH(
qt,
QT,
[QT component],
[src],
qt-mt ">= 3.3",
[GB_FIND(qptrlist.h, /usr/local/lib /usr/local /opt /usr/lib /usr/X11 /usr/X11R6 /usr/pkg /usr, include qt*/include qt/*/include)],
[GB_FIND(libqt-mt.$SHLIBEXT, /usr/local /opt /usr/X11 /usr/X11R6 /usr/pkg /usr, lib qt*/lib qt/*/lib, libqt-mt.$SHLIBEXT.3)],
[$CXX_LIB $THREAD_LIB $X_LIBS -lqt-mt],
[$THREAD_INC])
if test x"$have_qt" != "x"; then
GB_COMPONENT(
kde,
KDE,
[KDE 3.x component],
[src],
[GB_FIND(kapplication.h, `kde-config --prefix 2> /dev/null`, include)],
[GB_FIND(libkdecore.$SHLIBEXT, `kde-config --prefix 2> /dev/null`, lib)],
[-lkdecore -lkdeui -lDCOP -lkio])
fi
AC_OUTPUT( \
Makefile \
src/Makefile \
src/html/Makefile \
)