d07bf508a9
The Omnitrace program is being renamed. Full name: "ROCm Systems Profiler" Package name: "rocprofiler-systems" Binary / Library names: "rocprof-sys-*" --------- Co-authored-by: Xuan Chen <xuchen@amd.com> Signed-off-by: David Galiffi <David.Galiffi@amd.com>
30 строки
942 B
CMake
30 строки
942 B
CMake
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
|
|
|
|
project(rocprofiler-systems-user-api-example LANGUAGES CXX)
|
|
|
|
if(ROCPROFSYS_DISABLE_EXAMPLES)
|
|
get_filename_component(_DIR ${CMAKE_CURRENT_LIST_DIR} NAME)
|
|
|
|
if(${PROJECT_NAME} IN_LIST ROCPROFSYS_DISABLE_EXAMPLES OR ${_DIR} IN_LIST
|
|
ROCPROFSYS_DISABLE_EXAMPLES)
|
|
return()
|
|
endif()
|
|
endif()
|
|
|
|
set(CMAKE_BUILD_TYPE "Debug")
|
|
find_package(Threads REQUIRED)
|
|
if(NOT TARGET rocprofiler-systems::rocprofiler-systems-user-library)
|
|
find_package(rocprofiler-systems REQUIRED COMPONENTS user)
|
|
endif()
|
|
add_executable(user-api user-api.cpp)
|
|
target_link_libraries(
|
|
user-api PRIVATE Threads::Threads
|
|
rocprofiler-systems::rocprofiler-systems-user-library)
|
|
|
|
if(ROCPROFSYS_INSTALL_EXAMPLES)
|
|
install(
|
|
TARGETS user-api
|
|
DESTINATION bin
|
|
COMPONENT rocprofiler-systems-examples)
|
|
endif()
|