From 1aae05bd70ddc96f9124d64fa9f89d9c03537ff0 Mon Sep 17 00:00:00 2001 From: jpark37 Date: Wed, 15 Jun 2022 09:49:21 -0700 Subject: [PATCH] cmake: Enable ENABLE_HEVC by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c8a54ed96..176553c0e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ if(NOT CMAKE_BUILD_TYPE) endif() # Global project options -option(ENABLE_HEVC "Enable HEVC encoders" OFF) +option(ENABLE_HEVC "Enable HEVC encoders" ON) if(ENABLE_HEVC) add_compile_definitions(ENABLE_HEVC) endif()