Added a dependency to libqt4-dev in cmake, to allow for file system manipulation (creating directories, checking for existance of directories, etc...).

This commit is contained in:
Jonathan Thomas
2013-08-01 13:46:01 -05:00
parent 5e3c0717b1
commit cfd6a88011

View File

@@ -27,6 +27,15 @@ FIND_PACKAGE(SDL REQUIRED)
# Include SDL headers (needed for compile)
include_directories(${SDL_INCLUDE_DIR})
################# QT4 ###################
# Find QT4 libraries
FIND_PACKAGE(Qt4 REQUIRED)
# Include SDL headers (needed for compile)
INCLUDE(${QT_USE_FILE})
ADD_DEFINITIONS(${QT_DEFINITIONS})
################# BLACKMAGIC DECKLINK ###################
# Find BlackMagic DeckLinkAPI libraries
FIND_PACKAGE(BlackMagic)
@@ -113,6 +122,7 @@ SET ( REQUIRED_LIBRARIES
${FFMPEG_LIBRARIES}
${LIBJUCE_LIBRARIES}
${SDL_LIBRARY}
${QT_LIBRARIES}
${PROFILER}
)