mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 14:29:05 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
13 lines
318 B
CMake
13 lines
318 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_custom_target(test_mx_mfma)
|
|
|
|
add_gtest_executable(test_mx_mfma_op mx_mfma_op.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_mx_mfma_op PRIVATE utility)
|
|
endif()
|
|
add_dependencies(test_mx_mfma test_mx_mfma_op)
|
|
|
|
|