From ac8825b94175e391645948e5bb973c8d6ae846af Mon Sep 17 00:00:00 2001 From: dePaul Miller Date: Wed, 26 Jan 2022 15:17:46 -0500 Subject: [PATCH] Minor fix to change from LIBRARY_INIT to LIBRARY --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fc5c078..3538b6c1 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,7 +83,7 @@ set(CUTLASS_ENABLE_LIBRARY ${CUTLASS_ENABLE_LIBRARY_INIT} CACHE BOOL "Enable CUT set(CUTLASS_ENABLE_PROFILER ${CUTLASS_ENABLE_LIBRARY} CACHE BOOL "Enable CUTLASS Profiler") if(${CMAKE_PROJECT_NAME} STREQUAL ${PROJECT_NAME}) - set(CUTLASS_ENABLE_TESTS_INIT ${CUTLASS_ENABLE_LIBRARY_INIT}) + set(CUTLASS_ENABLE_TESTS_INIT ${CUTLASS_ENABLE_LIBRARY}) else() set(CUTLASS_ENABLE_TESTS_INIT OFF) endif()