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 30 31
|
#=========================== 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__ProgramScopeConstants
"${CMAKE_CURRENT_SOURCE_DIR}/ProgramScopeConstantAnalysis.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/ProgramScopeConstantResolution.cpp"
)
set(IGC_BUILD__SRC__OpenCLPasses_ProgramScopeConstants ${IGC_BUILD__SRC__ProgramScopeConstants} PARENT_SCOPE)
set(IGC_BUILD__HDR__ProgramScopeConstants
"${CMAKE_CURRENT_SOURCE_DIR}/ProgramScopeConstantAnalysis.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/ProgramScopeConstantResolution.hpp"
)
set(IGC_BUILD__HDR__OpenCLPasses_ProgramScopeConstants ${IGC_BUILD__HDR__ProgramScopeConstants} PARENT_SCOPE)
igc_sg_register(
Compiler__OpenCLPasses_ProgramScopeConstants
"ProgramScopeConstant"
FILES
${IGC_BUILD__SRC__ProgramScopeConstants}
${IGC_BUILD__HDR__ProgramScopeConstants}
)
|