CMakeLists.windows-x86_64.txt 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # This file was generated by the build system used internally in the Yandex monorepo.
  2. # Only simple modifications are allowed (adding source-files to targets, adding simple properties
  3. # like target_include_directories). These modifications will be ported to original
  4. # ya.make files by maintainers. Any complex modifications which can't be ported back to the
  5. # original buildsystem will not be accepted.
  6. add_subdirectory(common)
  7. add_subdirectory(easy_parse)
  8. add_subdirectory(fast_sax)
  9. add_subdirectory(writer)
  10. add_subdirectory(yson)
  11. add_library(library-cpp-json)
  12. target_link_libraries(library-cpp-json PUBLIC
  13. contrib-libs-cxxsupp
  14. yutil
  15. contrib-libs-rapidjson
  16. cpp-json-common
  17. cpp-json-fast_sax
  18. cpp-json-writer
  19. cpp-string_utils-relaxed_escaper
  20. )
  21. target_sources(library-cpp-json PRIVATE
  22. ${CMAKE_SOURCE_DIR}/library/cpp/json/json_writer.cpp
  23. ${CMAKE_SOURCE_DIR}/library/cpp/json/json_reader.cpp
  24. ${CMAKE_SOURCE_DIR}/library/cpp/json/json_prettifier.cpp
  25. ${CMAKE_SOURCE_DIR}/library/cpp/json/rapidjson_helpers.cpp
  26. )