aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/writer/CMakeLists.txt
blob: 42cb6251d053aa154a652542d93ad1a95a002b3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
add_library(cpp-json-writer)
target_link_libraries(cpp-json-writer PUBLIC
  contrib-libs-cxxsupp
  yutil
  cpp-json-common
  tools-enum_parser-enum_serialization_runtime
)
target_sources(cpp-json-writer PRIVATE
  ${CMAKE_SOURCE_DIR}/library/cpp/json/writer/json_value.cpp
  ${CMAKE_SOURCE_DIR}/library/cpp/json/writer/json.cpp
)
generate_enum_serilization(cpp-json-writer
  ${CMAKE_SOURCE_DIR}/library/cpp/json/writer/json_value.h
  INCLUDE_HEADERS
  library/cpp/json/writer/json_value.h
)