2024-01-09 11:34:46 -06:00
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
cmake_minimum_required(VERSION 3.21.0 FATAL_ERROR)
|
|
|
|
|
|
|
|
|
|
project(
|
|
|
|
|
rocprofiler-tests-json-tool
|
2024-02-29 23:49:54 -06:00
|
|
|
LANGUAGES C CXX
|
2024-01-09 11:34:46 -06:00
|
|
|
VERSION 0.0.0)
|
|
|
|
|
|
|
|
|
|
find_package(rocprofiler-sdk REQUIRED)
|
|
|
|
|
|
2024-02-29 23:49:54 -06:00
|
|
|
# tool library supporting JSON and perfetto output
|
2024-01-09 11:34:46 -06:00
|
|
|
add_library(rocprofiler-sdk-json-tool SHARED)
|
|
|
|
|
target_sources(rocprofiler-sdk-json-tool PRIVATE json-tool.cpp)
|
|
|
|
|
target_link_libraries(
|
|
|
|
|
rocprofiler-sdk-json-tool
|
|
|
|
|
PRIVATE rocprofiler::rocprofiler rocprofiler::cereal rocprofiler::tests-build-flags
|
2024-02-23 10:30:33 -06:00
|
|
|
rocprofiler::tests-common-library rocprofiler::tests-perfetto)
|
2024-01-09 11:34:46 -06:00
|
|
|
set_target_properties(
|
|
|
|
|
rocprofiler-sdk-json-tool
|
2024-01-18 09:48:06 -06:00
|
|
|
PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/rocprofiler-sdk"
|
2024-01-09 11:34:46 -06:00
|
|
|
SOVERSION ${PROJECT_VERSION_MINOR}
|
|
|
|
|
VERSION
|
2024-01-18 09:48:06 -06:00
|
|
|
${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}
|
|
|
|
|
INSTALL_RPATH "\$ORIGIN:\$ORIGIN/..")
|
2024-01-09 11:34:46 -06:00
|
|
|
|
2024-02-29 23:49:54 -06:00
|
|
|
# tool library which just checks that tools can be compiled with C language
|
|
|
|
|
add_library(rocprofiler-sdk-c-tool SHARED)
|
|
|
|
|
target_sources(rocprofiler-sdk-c-tool PRIVATE c-tool.c)
|
|
|
|
|
target_link_libraries(rocprofiler-sdk-c-tool PRIVATE rocprofiler::rocprofiler
|
|
|
|
|
rocprofiler::tests-build-flags)
|
|
|
|
|
set_target_properties(
|
|
|
|
|
rocprofiler-sdk-c-tool
|
|
|
|
|
PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/rocprofiler-sdk"
|
|
|
|
|
SOVERSION ${PROJECT_VERSION_MINOR}
|
|
|
|
|
VERSION
|
|
|
|
|
${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}
|
|
|
|
|
INSTALL_RPATH "\$ORIGIN:\$ORIGIN/..")
|