• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1if (NOT TARGET gfxstream_host_tracing)
2    add_library(
3        gfxstream_host_tracing.headers
4        INTERFACE)
5    target_include_directories(
6        gfxstream_host_tracing.headers
7        INTERFACE
8        include)
9
10    add_library(
11        gfxstream_host_tracing
12        Tracing.cpp)
13    target_link_libraries(
14        gfxstream_host_tracing
15        PUBLIC
16        gfxstream_host_tracing.headers)
17
18    if(GFXSTREAM_ENABLE_HOST_TRACING)
19        target_link_libraries(
20            gfxstream_host_tracing
21            PUBLIC
22            perfetto)
23    endif()
24endif()
25