mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-21 15:47:38 +00:00
12 lines
240 B
CMake
12 lines
240 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if(NOT TARGET analyze)
|
|
add_custom_target(analyze)
|
|
endif()
|
|
|
|
function(mark_as_analyzer)
|
|
add_dependencies(analyze ${ARGN})
|
|
endfunction()
|
|
|