install(
DIRECTORY std debug
DESTINATION ${INSTALL_LIBRARY_DIR}/asc/impl/utils
OPTIONAL FILES_MATCHING
PATTERN "*.h"
PATTERN "CMakeLists.txt" EXCLUDE)
install(
DIRECTORY ${ASCENDC_INCLUDE_DIR}/utils/
DESTINATION ${INSTALL_LIBRARY_DIR}/asc/include/utils/ OPTIONAL
PATTERN "utils/stub" EXCLUDE
)
file(MAKE_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/asc/include/tiling/platform")
file(MAKE_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/asc/include/tiling/context")
file(MAKE_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/ascendc/include/host_api/include/tiling/")
file(MAKE_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/ascendc/include/host_api/include/log")
file(MAKE_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/ascendc/include/highlevel_api/utils/log")
install(CODE "file(CREATE_LINK ../../utils/tiling/platform/platform_ascendc.h ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/asc/include/tiling/platform/platform_ascendc.h SYMBOLIC)")
install(CODE "file(CREATE_LINK ../../utils/context/context_builder.h ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/asc/include/tiling/context/context_builder.h SYMBOLIC)")
install(CODE "file(CREATE_LINK ../../../../../asc/include/utils/tiling/template_argument.h ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/ascendc/include/host_api/include/tiling/template_argument.h SYMBOLIC)")
install(CODE "file(CREATE_LINK ../../../../../asc/include/utils/log/asc_cpu_log.h ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/ascendc/include/host_api/include/log/asc_cpu_log.h SYMBOLIC)")
install(CODE "file(CREATE_LINK ../utils/tiling/template_argument.h ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/asc/include/tiling/template_argument.h SYMBOLIC)")
install(CODE "file(CREATE_LINK ../../../../../asc/include/utils/log/asc_cpu_log.h ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBRARY_DIR}/ascendc/include/highlevel_api/utils/log/asc_cpu_log.h SYMBOLIC)")
set(TEMPLATE_ARG ${CMAKE_CURRENT_BINARY_DIR})
set(TEMPLATE_ARG_HAED ${TEMPLATE_ARG}/ascendc/host_api/tiling/template_argument.h)
set(ASC_CPU_LOG_HAED ${CMAKE_CURRENT_BINARY_DIR}/ascendc/host_api/log/asc_cpu_log.h)
add_custom_command(OUTPUT ${TEMPLATE_ARG_HAED}
COMMAND ${CMAKE_COMMAND} -E copy ${ASCENDC_DIR}/include/utils/tiling/template_argument.h ${TEMPLATE_ARG_HAED}
DEPENDS ${ASCENDC_DIR}/include/utils/tiling/template_argument.h)
add_custom_command(OUTPUT ${ASC_CPU_LOG_HAED}
COMMAND ${CMAKE_COMMAND} -E copy ${ASCENDC_DIR}/include/utils/log/asc_cpu_log.h ${ASC_CPU_LOG_HAED}
DEPENDS ${ASCENDC_DIR}/include/utils/log/asc_cpu_log.h)
add_custom_target(template_argument ALL
DEPENDS ${TEMPLATE_ARG_HAED})
add_custom_target(tiling_log_target ALL
DEPENDS ${ASC_CPU_LOG_HAED})
add_dependencies(kernel_tiling_headers template_argument tiling_log_target)
target_include_directories(kernel_tiling_headers INTERFACE
$<BUILD_INTERFACE:${TEMPLATE_ARG}>
)