diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-18 15:49:59 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-18 15:49:59 +0300 |
commit | b4cb34dfb2619f594d82e512fd9ff7fc97400133 (patch) | |
tree | 6a64ab25a145265287789bceed3f59e953561206 /contrib/libs/nghttp2 | |
parent | 5e837a820d5be0671fa4096a1cc1e378453e5132 (diff) | |
download | ydb-b4cb34dfb2619f594d82e512fd9ff7fc97400133.tar.gz |
intermediate changes
ref:1a0585d83f27cb6fb5b9c4f68a08177e10faf3b3
Diffstat (limited to 'contrib/libs/nghttp2')
-rw-r--r-- | contrib/libs/nghttp2/CMakeLists.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/contrib/libs/nghttp2/CMakeLists.txt b/contrib/libs/nghttp2/CMakeLists.txt new file mode 100644 index 0000000000..843f31f86a --- /dev/null +++ b/contrib/libs/nghttp2/CMakeLists.txt @@ -0,0 +1,37 @@ +add_library(contrib-libs-nghttp2) +target_compile_options(contrib-libs-nghttp2 PRIVATE + -DBUILDING_NGHTTP2 + -DHAVE_CONFIG_H +) +target_include_directories(contrib-libs-nghttp2 PUBLIC + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/includes +) +target_include_directories(contrib-libs-nghttp2 PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/includes + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2 + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib +) +target_sources(contrib-libs-nghttp2 PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_buf.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_callbacks.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_debug.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_frame.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_hd.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_hd_huffman.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_hd_huffman_data.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_helper.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_http.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_map.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_mem.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_npn.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_option.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_outbound_item.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_pq.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_priority_spec.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_queue.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_rcbuf.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_session.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_stream.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_submit.c + ${CMAKE_SOURCE_DIR}/contrib/libs/nghttp2/lib/nghttp2_version.c +) |