From c05cfdc623cff75c4115d8f96f767f33ab697ecf Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 2 Dec 2025 15:02:41 +0000 Subject: [PATCH] Update cmake . --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ac8e4b..a76fb89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,13 +2,13 @@ cmake_minimum_required (VERSION 3.14) project(tim-vx LANGUAGES C CXX) option(BUILD_SHARED_LIBS "Build using shared libraries" ON) -option(TIM_VX_ENABLE_CUSTOM_OP "Enable custom op support" OFF) +option(TIM_VX_ENABLE_CUSTOM_OP "Enable custom op support" ON) option(TIM_VX_ENABLE_TEST "Build the unit test" OFF) option(TIM_VX_ENABLE_LAYOUT_INFER "Enable layout inference support" ON) -option(TIM_VX_ENABLE_NBG_PARSER "Enable NBG parser" OFF) +option(TIM_VX_ENABLE_NBG_PARSER "Enable NBG parser" ON) option(TIM_VX_CODE_COVERAGE "Run code coverage with gconv(gcc only" OFF) option(TIM_VX_USE_EXTERNAL_OVXLIB "Use external OVXLIB" OFF) -option(TIM_VX_BUILD_EXAMPLES "Build demos show general usage" OFF) +option(TIM_VX_BUILD_EXAMPLES "Build demos show general usage" ON) option(TIM_VX_ENABLE_VIPLITE "Enable lite driver api support" OFF) option(TIM_VX_ENABLE_40BIT "Enable large memory support" OFF) option(TIM_VX_ENABLE_PLATFORM "Enable multi devices support" OFF)