From 0025cc34e54b890bf29efe7034a2bd64ac405a91 Mon Sep 17 00:00:00 2001 From: Sergey Semenov Date: Wed, 18 Jun 2025 06:56:17 -0700 Subject: [PATCH] [SYCL][NFC] Remove boost header includes from cmake --- sycl/source/CMakeLists.txt | 1 - sycl/test/CMakeLists.txt | 1 - sycl/unittests/CMakeLists.txt | 1 - 3 files changed, 3 deletions(-) diff --git a/sycl/source/CMakeLists.txt b/sycl/source/CMakeLists.txt index f2e5494fb6218..803d505a3f2fe 100644 --- a/sycl/source/CMakeLists.txt +++ b/sycl/source/CMakeLists.txt @@ -61,7 +61,6 @@ function(add_sycl_rt_library LIB_NAME LIB_OBJ_NAME) PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${sycl_inc_dir} - ${BOOST_UNORDERED_INCLUDE_DIRS} ) # Object libraries are not linked, so these "libraries" are in fact include diff --git a/sycl/test/CMakeLists.txt b/sycl/test/CMakeLists.txt index c0a02a874b962..74d34fc816b81 100644 --- a/sycl/test/CMakeLists.txt +++ b/sycl/test/CMakeLists.txt @@ -16,7 +16,6 @@ set(SYCL_THREADS_LIB ${CMAKE_THREAD_LIBS_INIT}) # TEST_INCLUDE_PATH is used for syntax-only verification of type information. list(APPEND test_includes ${SYCL_INCLUDE}) list(APPEND test_includes ${SYCL_SOURCE_DIR}/source) -list(APPEND test_includes ${BOOST_UNORDERED_INCLUDE_DIRS}) if(SYCL_ENABLE_EXTENSION_JIT) list(APPEND test_includes ${LLVM_EXTERNAL_SYCL_JIT_SOURCE_DIR}/jit-compiler/include) list(APPEND test_includes ${LLVM_EXTERNAL_SYCL_JIT_SOURCE_DIR}/common/include) diff --git a/sycl/unittests/CMakeLists.txt b/sycl/unittests/CMakeLists.txt index 32dcca6d809c0..7431b72cb4003 100644 --- a/sycl/unittests/CMakeLists.txt +++ b/sycl/unittests/CMakeLists.txt @@ -1,6 +1,5 @@ add_custom_target(SYCLUnitTests) set_target_properties(SYCLUnitTests PROPERTIES FOLDER "SYCL tests") -include_directories(${BOOST_UNORDERED_INCLUDE_DIRS}) foreach(flag_var CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE