Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
71de7a93
Commit
71de7a93
authored
May 25, 2006
by
zorglub
Browse files
Fix build
parent
450a2fb5
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
71de7a93
...
...
@@ -4603,6 +4603,18 @@ then
fi
fi
dnl
dnl QT 4
dnl
enableqt4=false
AC_ARG_ENABLE(qt4,
[ --enable-qt4 QT 4 support (default disabled) ],
[if test "${enable_qt4}" = "yes"; then
VLC_ADD_PLUGINS([qt4])
enableqt4=true
fi])
AM_CONDITIONAL(ENABLE_QT4, test "$enableqt4" = "true")
dnl
dnl WinCE GUI module
dnl
...
...
modules/gui/qt4/Modules.am
0 → 100644
View file @
71de7a93
SOURCES_qt4 = qt4.cpp
EXTRA_DIST += \
qt4.hpp
TOUI = file_open
UIH := $(TOUI:%=%.h)
TOMOC = main_interface
MOCCPP := $(TOMOC:%=%.moc.cpp)
if ENABLE_QT4
BUILT_SOURCES += $(UIH)
BUILT_SOURCES += $(MOCCPP)
nodist_SOURCES_qt4 = $(UIH) $(MOCCPP)
$(MOCCPP): %.moc.cpp: %.hpp
@echo "MOC $< -> $@"
moc -o $@ $<
$(UIH): %.h: %.ui
@echo "UIC $< -> $@"
uic -tr _ -o $@ $<
endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment