Quicktime (under OSX) to do the reading of the movie files. Originally submitted as a sperate .mov plugin, but integrated into the QuickTime plugin by Robert Osfield.
18 lines
374 B
Makefile
18 lines
374 B
Makefile
TOPDIR = ../../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES = ReaderWriterQT.cpp\
|
|
QTtexture.cpp\
|
|
MovieData.cpp\
|
|
QTUtils.cpp\
|
|
QuicktimeImageStream.cpp\
|
|
|
|
LIBS += $(QUICKTIME) $(OSG_LIBS) $(OTHER_LIBS)
|
|
|
|
TARGET_BASENAME = qt
|
|
include $(TOPDIR)/Make/cygwin_plugin_def
|
|
PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|
|
|