2023-08-08 18:39:01 -05:00
|
|
|
#
|
2023-08-30 11:34:03 -05:00
|
|
|
# add container sources and headers to common library target
|
|
|
|
|
#
|
2023-11-07 20:45:40 -06:00
|
|
|
set(containers_headers
|
|
|
|
|
ring_buffer.hpp c_array.hpp operators.hpp record_header_buffer.hpp ring_buffer.hpp
|
|
|
|
|
small_vector.hpp stable_vector.hpp static_vector.hpp)
|
|
|
|
|
set(containers_sources ring_buffer.cpp record_header_buffer.cpp ring_buffer.cpp
|
|
|
|
|
small_vector.cpp)
|
2023-08-08 18:39:01 -05:00
|
|
|
|
2024-10-25 11:17:34 -05:00
|
|
|
target_sources(rocprofiler-sdk-common-library PRIVATE ${containers_sources}
|
|
|
|
|
${containers_headers})
|