From e03bad6136c2f4bf300ece0f8dfb75299b5f8318 Mon Sep 17 00:00:00 2001 From: Bram Veenboer Date: Tue, 21 May 2024 16:24:26 +0200 Subject: [PATCH] Fix typo --- cmake/cudawrappers-helper.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/cudawrappers-helper.cmake b/cmake/cudawrappers-helper.cmake index 6a97e529..bb107210 100644 --- a/cmake/cudawrappers-helper.cmake +++ b/cmake/cudawrappers-helper.cmake @@ -12,7 +12,7 @@ function(inline_local_includes input_file output_file) string(REGEX REPLACE ${include_regex} "\\1" include ${include}) file(GLOB_RECURSE INCLUDE_PATHS "${PROJECT_SOURCE_DIR}/*/${include}") list(SORT INCLUDE_PATHS ORDER DESCENDING) - list(GET INCLUDE_PATHS 0 include_PATHS) + list(GET INCLUDE_PATHS 0 include_PATH) file(READ ${include_PATH} include_contents) string(APPEND processed_file_contents "${include_contents}\n\n") endforeach()