refactor: add add_subdirectories in cmake files

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-01-03 14:27:20 +00:00
committed by Compute-Runtime-Automation
parent 3997d2a6b3
commit 5eed889c94
4 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2021-2023 Intel Corporation
# Copyright (C) 2021-2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -12,4 +12,5 @@ if(SUPPORT_PVC)
${CMAKE_CURRENT_SOURCE_DIR}/cmdqueue_pvc.cpp
${CMAKE_CURRENT_SOURCE_DIR}/kernel_pvc.cpp
)
add_subdirectories()
endif()

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2023 Intel Corporation
# Copyright (C) 2023-2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -13,4 +13,5 @@ if(SUPPORT_ARL)
${CMAKE_CURRENT_SOURCE_DIR}/image_arl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/sampler_arl.cpp
)
add_subdirectories()
endif()

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2021-2023 Intel Corporation
# Copyright (C) 2021-2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -13,4 +13,5 @@ if(SUPPORT_DG2)
${CMAKE_CURRENT_SOURCE_DIR}/image_dg2.cpp
${CMAKE_CURRENT_SOURCE_DIR}/sampler_dg2.cpp
)
add_subdirectories()
endif()

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2022-2023 Intel Corporation
# Copyright (C) 2022-2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -13,4 +13,5 @@ if(SUPPORT_MTL)
${CMAKE_CURRENT_SOURCE_DIR}/image_mtl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/sampler_mtl.cpp
)
add_subdirectories()
endif()