From fc6b3d0ad2a6a440222b40d1b0ae4f13f4971742 Mon Sep 17 00:00:00 2001 From: oneWayOut Date: Mon, 6 Jul 2020 12:49:57 +0800 Subject: [PATCH] fix makefile comment bug spaces between variable declaration and comment will assign unexpected value to the variable --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1d9d4422..5635f8f4 100644 --- a/Makefile +++ b/Makefile @@ -5,12 +5,14 @@ OPENCV=0 AVX=0 OPENMP=0 LIBSO=0 -ZED_CAMERA=0 # ZED SDK 3.0 and above -ZED_CAMERA_v2_8=0 # ZED SDK 2.X +ZED_CAMERA=0 +ZED_CAMERA_v2_8=0 # set GPU=1 and CUDNN=1 to speedup on GPU # set CUDNN_HALF=1 to further speedup 3 x times (Mixed-precision on Tensor Cores) GPU: Volta, Xavier, Turing and higher # set AVX=1 and OPENMP=1 to speedup on CPU (if error occurs then set AVX=0) +# set ZED_CAMERA=1 to enable ZED SDK 3.0 and above +# set ZED_CAMERA_v2_8=1 to enable ZED SDK 2.X USE_CPP=0 DEBUG=0