mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-1157 Change-Id: Ie1b907e838cfb9ad0d75cc8971d415f7c77103c9 Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
21 lines
575 B
CMake
21 lines
575 B
CMake
#
|
|
# Copyright (C) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(BUILT_IN_KERNEL_DIR "${NEO_SOURCE_DIR}/shared/source/built_ins")
|
|
set(PLATFORM_SPECIFIC_TEST_TARGETS_FOLDER ult_product_targets)
|
|
|
|
if(NOT TARGET run_unit_tests)
|
|
add_custom_target(run_unit_tests ALL)
|
|
set_target_properties(run_unit_tests PROPERTIES FOLDER ${PLATFORM_SPECIFIC_TEST_TARGETS_FOLDER})
|
|
endif()
|
|
|
|
if(NOT TARGET unit_tests)
|
|
add_custom_target(unit_tests ALL)
|
|
set_target_properties(unit_tests PROPERTIES FOLDER ${PLATFORM_SPECIFIC_TEST_TARGETS_FOLDER})
|
|
endif()
|
|
|
|
add_subdirectories()
|