From 686b0b361ff196d49e1a030e1c73c87be14b1267 Mon Sep 17 00:00:00 2001 From: tabtre <99768465+tabtre@users.noreply.github.com> Date: Wed, 16 Feb 2022 01:35:20 +0300 Subject: [PATCH] a bit typo fix in CmkaeLists.txt No $ symbol to get CUB_DIR from environment variables The CUB_DIR environment variables no use for building the lib --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c32c281..aa1b049 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,7 +75,7 @@ endif() endif() if(NOT DEFINED CUB_DIR AND DEFINED ENV{CUB_DIR}) - set(CUB_DIR ENV{CUB_DIR}) + set(CUB_DIR $ENV{CUB_DIR}) endif() message(STATUS "Finding CUB")