Skip to content
Snippets Groups Projects
Commit c7553da4 authored by Emmanuel Lepage Vallee's avatar Emmanuel Lepage Vallee
Browse files

cmake: Enable video by default

parent f851c69e
No related branches found
No related tags found
No related merge requests found
......@@ -136,11 +136,11 @@ IF (${RING_FOUND} MATCHES "true")
INCLUDE_DIRECTORIES(${ring_INCLUDE_DIRS})
ENDIF()
IF(${ENABLE_VIDEO} MATCHES true)
IF(NOT (${ENABLE_VIDEO} MATCHES false))
MESSAGE("VIDEO enabled")
SET(ENABLE_VIDEO 1 CACHE BOOLEAN "Enable video")
add_definitions( -DENABLE_VIDEO=true )
ENDIF(${ENABLE_VIDEO} MATCHES true)
ENDIF(NOT (${ENABLE_VIDEO} MATCHES false))
FIND_PACKAGE(Qt5Core REQUIRED)
FIND_PACKAGE(Qt5DBus)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment