[vlmc-devel] commit: Using QtGui module event when GUI is off, so the effects engine can use QImage (Hugo Beauzee-Luyssen )

git at videolan.org git at videolan.org
Sat Mar 20 16:29:36 CET 2010


vlmc | branch: master | Hugo Beauzee-Luyssen <beauze.h at gmail.com> | Sat Mar 20 12:53:14 2010 +0100| [f3a034bf342645673aed39f048f95ceea07673d5] | committer: Hugo Beauzee-Luyssen 

Using QtGui module event when GUI is off, so the effects engine can use QImage

> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=f3a034bf342645673aed39f048f95ceea07673d5
---

 CMakeLists.txt |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 58b663d..15b93fe 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -66,7 +66,8 @@ INCLUDE_DIRECTORIES(${LIBVLC_INCLUDE_DIR})
 IF (WITH_GUI)
     FIND_PACKAGE(Qt4 4.5.1 COMPONENTS QtCore QtXml QtGui QtSvg REQUIRED )
 ELSE(WITH_GUI)
-    FIND_PACKAGE(Qt4 4.5.1 COMPONENTS QtCore QtXml REQUIRED )
+    # Search for QtGui as the effets engine requires QImage.
+    FIND_PACKAGE(Qt4 4.5.1 COMPONENTS QtCore QtXml QtGui REQUIRED )
 ENDIF(WITH_GUI)
 
 INCLUDE(${QT_USE_FILE})



More information about the Vlmc-devel mailing list