8a25b239bc
* Fixing coutner colleciton in tools and enabling tests * fixing tests * improving coverage on test * Adding vector operations app * Fixing tools bug for counter collection * removing roctx linking
22 lines
659 B
CMake
22 lines
659 B
CMake
#
|
|
# Integration test applications
|
|
#
|
|
cmake_minimum_required(VERSION 3.21.0 FATAL_ERROR)
|
|
|
|
project(rocprofiler-test-apps LANGUAGES C CXX)
|
|
|
|
set(CMAKE_BUILD_RPATH "\$ORIGIN:\$ORIGIN/../lib")
|
|
|
|
# applications used by integration tests which DO NOT link to rocprofiler-sdk-roctx
|
|
add_subdirectory(simple-transpose)
|
|
add_subdirectory(multistream)
|
|
add_subdirectory(vector-operations)
|
|
|
|
set(CMAKE_BUILD_RPATH
|
|
"\$ORIGIN:\$ORIGIN/../lib:$<TARGET_FILE_DIR:rocprofiler-sdk-roctx::rocprofiler-sdk-roctx-shared-library>"
|
|
)
|
|
|
|
# applications used by integration tests which DO link to rocprofiler-sdk-roctx
|
|
add_subdirectory(reproducible-runtime)
|
|
add_subdirectory(transpose)
|