From d98d2b8c468e777fe7921dbc816aecf64a3290d5 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sat, 2 Apr 2022 14:50:57 +0300 Subject: [PATCH] tests and samples are not built by default --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 733c514..216a96e 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,8 @@ project(vb01) set(CMAKE_BUILD_TYPE Debug) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -pedantic") set(BUILD_SHARED_LIBS OFF) -set(BUILD_TESTS ON) -set(BUILD_SAMPLES ON) +set(BUILD_TESTS OFF) +set(BUILD_SAMPLES OFF) set(BUILD_WITH_ASSIMP OFF) set(LIB_NAME vb01) set(CMAKE_POSITION_INDEPENDENT_CODE ON)