1add_library(
2    gfxstream_etc_headers
3    INTERFACE)
4target_include_directories(
5    gfxstream_etc_headers
6    INTERFACE
7    include)
8
9add_library(
10    gfxstream_etc
11    STATIC
12    etc.cpp)
13target_link_libraries(
14    gfxstream_etc
15    PUBLIC
16    gfxstream_etc_headers)