mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
add UIC to autotool
This commit is contained in:
parent
878a7f7b46
commit
ca4737f132
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
*.moc.o
|
||||
*.moc.o
|
||||
*.moc.cpp
|
||||
ui_*.h
|
||||
*.o
|
||||
Makefile.in
|
||||
Makefile
|
||||
|
@ -143,6 +143,14 @@ if test "$MOC" = ":"; then
|
||||
development package of Qt.])
|
||||
fi
|
||||
|
||||
if test "$UIC" = ":"; then
|
||||
AC_MSG_WARN([
|
||||
The $PACKAGE package needs the 'Qt User Interface Compiler' to compile properly.
|
||||
Though Qt itself may be properly installed including headers and libraries
|
||||
the 'uic' program is missing. Possibly you need to install the full
|
||||
development package of Qt.])
|
||||
fi
|
||||
|
||||
dnl Check for X11
|
||||
if test x$LINUX == "xyes"; then
|
||||
AC_PATH_XTRA
|
||||
|
@ -32,6 +32,10 @@ MOCHEADERS = settingsdialog.h simmessage.h qucssettingsdialog.h \
|
||||
|
||||
MOCFILES = $(MOCHEADERS:.h=.moc.cpp)
|
||||
|
||||
UICFILES = ui_searchdialog.h
|
||||
|
||||
BUILT_SOURCES = $(UICFILES)
|
||||
|
||||
libdialogs_a_SOURCES = settingsdialog.cpp newprojdialog.cpp \
|
||||
simmessage.cpp qucssettingsdialog.cpp labeldialog.cpp changedialog.cpp \
|
||||
matchdialog.cpp sweepdialog.cpp digisettingsdialog.cpp searchdialog.cpp \
|
||||
@ -41,7 +45,7 @@ libdialogs_a_SOURCES = settingsdialog.cpp newprojdialog.cpp \
|
||||
|
||||
nodist_libdialogs_a_SOURCES = $(MOCFILES)
|
||||
|
||||
noinst_HEADERS = $(MOCHEADERS)
|
||||
noinst_HEADERS = $(MOCHEADERS) $(UIHEADERS)
|
||||
|
||||
AM_CPPFLAGS = $(X11_INCLUDES) $(QT_INCLUDES) -I$(top_srcdir)/qucs
|
||||
|
||||
@ -50,6 +54,9 @@ SUFFIXES = .moc.cpp
|
||||
.h.moc.cpp:
|
||||
$(MOC) -o $@ $<
|
||||
|
||||
ui_searchdialog.h: searchdialog.ui
|
||||
$(UIC) -o $@ $<
|
||||
|
||||
CLEANFILES = *~
|
||||
MAINTAINERCLEANFILES = Makefile.in *.moc.cpp
|
||||
DISTCLEANFILES = *.moc.cpp
|
||||
DISTCLEANFILES = *.moc.cpp ui_*.h
|
||||
|
Loading…
x
Reference in New Issue
Block a user