2d072f9217
* Add rocprofiler-sdk-utilities.cmake - contains cmake function rocprofiler_sdk_get_gfx_architectures * Update perfetto_reader.py - fix hash collision * Update project names in tests folders - rocprofiler-tests -> rocprofiler-sdk-tests * Fix incorrect allocation-error handling * [CI] Disable openmp tests for navi2, navi3, and navi4 * Suppress leaks by omptarget and llvm --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
19 rivejä
570 B
CMake
19 rivejä
570 B
CMake
#
|
|
# Integration test application libraries
|
|
#
|
|
cmake_minimum_required(VERSION 3.21.0 FATAL_ERROR)
|
|
|
|
project(rocprofiler-sdk-tests-lib LANGUAGES C CXX)
|
|
|
|
set(CMAKE_BUILD_RPATH "\$ORIGIN:\$ORIGIN/../lib")
|
|
|
|
# libraries used by integration test apps which DO NOT link to rocprofiler-sdk-roctx
|
|
add_subdirectory(vector-operations)
|
|
|
|
set(CMAKE_BUILD_RPATH
|
|
"\$ORIGIN:\$ORIGIN/../lib:$<TARGET_FILE_DIR:rocprofiler-sdk-roctx::rocprofiler-sdk-roctx-shared-library>"
|
|
)
|
|
|
|
# libraries used by integration test apps which DO link to rocprofiler-sdk-roctx
|
|
add_subdirectory(transpose)
|