Commit 53fdf365 authored by Bartlomiej Kocot's avatar Bartlomiej Kocot
Browse files

Revert "Update cmake files"

This reverts commit c27f88b5.
parent c27f88b5
...@@ -420,8 +420,6 @@ IF(IS_DIRECTORY "${PROJECT_SOURCE_DIR}/library/src/tensor_operation_instance/gpu ...@@ -420,8 +420,6 @@ IF(IS_DIRECTORY "${PROJECT_SOURCE_DIR}/library/src/tensor_operation_instance/gpu
ENDIF() ENDIF()
ENDFOREACH() ENDFOREACH()
add_subdirectory(include/ck)
add_custom_target(instances DEPENDS utility;${CK_DEVICE_INSTANCES} SOURCES ${INSTANCE_FILES}) add_custom_target(instances DEPENDS utility;${CK_DEVICE_INSTANCES} SOURCES ${INSTANCE_FILES})
add_subdirectory(library) add_subdirectory(library)
......
add_executable(client_tensor_transform tensor_transform.cpp) add_executable(client_tensor_transform tensor_transform.cpp)
target_include_directories(client_tensor_transform INTERFACE composable_kernel::wrapper)
add_executable(client_tensor_transform_using_wrapper tensor_transform_using_wrapper.cpp) add_executable(client_tensor_transform_using_wrapper tensor_transform_using_wrapper.cpp)
target_include_directories(client_tensor_transform_using_wrapper INTERFACE composable_kernel::wrapper)
add_subdirectory(wrapper)
add_library(wrapper INTERFACE)
add_library(composable_kernel::wrapper ALIAS wrapper)
target_include_directories(wrapper INTERFACE
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck/utility>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck/tensor_description>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck/wrapper>
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment