8 lines
204 B
CMake
8 lines
204 B
CMake
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
if(DEFINED TOOLCHAIN_HOME)
|
||
|
set(find_program_icx_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
|
||
|
endif()
|
||
|
|
||
|
find_program(CMAKE_C_COMPILER icx ${find_program_icx_args})
|