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

[ #50963 ] Enable video by default

parent a188c5b1
No related branches found
No related tags found
No related merge requests found
......@@ -17,11 +17,11 @@ PROJECT(qtsflphone)
SET(LOCAL_CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/")
SET(CMAKE_MODULE_PATH "${LOCAL_CMAKE_MODULE_PATH}")
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)
IF(${ENABLE_QT5} MATCHES true)
FIND_PACKAGE(Qt5Core)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment