eaf3bbceb7
* Add enum to string cxx utils * Add license header * Address review comments * Add version assertions * Address review comments * Fix thread trace header include --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
16 lines
416 B
CMake
16 lines
416 B
CMake
#
|
|
#
|
|
# Installation of public C++ headers
|
|
#
|
|
#
|
|
set(ROCPROFILER_CXX_HEADER_FILES enum_string.hpp hash.hpp name_info.hpp operators.hpp
|
|
perfetto.hpp utility.hpp serialization.hpp version.hpp)
|
|
|
|
install(
|
|
FILES ${ROCPROFILER_CXX_HEADER_FILES}
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/rocprofiler-sdk/cxx
|
|
COMPONENT development)
|
|
|
|
add_subdirectory(codeobj)
|
|
add_subdirectory(details)
|