1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#=========================== begin_copyright_notice ============================
#
# Copyright (C) 2017-2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
#============================ end_copyright_notice =============================
include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
set(IGC_BUILD__SRC__SetFastMathFlags
"${CMAKE_CURRENT_SOURCE_DIR}/SetFastMathFlags.cpp"
)
set(IGC_BUILD__SRC__OpenCLPasses_SetFastMathFlags ${IGC_BUILD__SRC__SetFastMathFlags} PARENT_SCOPE)
set(IGC_BUILD__HDR__SetFastMathFlags
"${CMAKE_CURRENT_SOURCE_DIR}/SetFastMathFlags.hpp"
)
set(IGC_BUILD__HDR__OpenCLPasses_SetFastMathFlags ${IGC_BUILD__HDR__SetFastMathFlags} PARENT_SCOPE)
igc_sg_register(
Compiler__OpenCLPasses_SetFastMathFlags
"SetFastMathFlags"
FILES
${IGC_BUILD__SRC__SetFastMathFlags}
${IGC_BUILD__HDR__SetFastMathFlags}
)
|