From e44e2b61db556a67f022f6c9367f1fba3abd19ab Mon Sep 17 00:00:00 2001 From: nscipione Date: Tue, 17 Dec 2024 15:16:03 +0000 Subject: [PATCH] Fix root CMakeLists include Fix CMakeLists.txt to properly include onemath/sycl/blas Signed-off-by: nscipione --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c6395a..fc43b79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ cmake_minimum_required(VERSION 3.4.3) project(generic_sycl_components VERSION 0.1.0 LANGUAGES CXX) -include(onemath/sycl/blas) +include_directories(onemath/sycl/blas)