CMakeLists.windows-x86_64.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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_executable(library-cpp-actors-http-ut)
  7. target_include_directories(library-cpp-actors-http-ut PRIVATE
  8. ${CMAKE_SOURCE_DIR}/library/cpp/actors/http
  9. )
  10. target_link_libraries(library-cpp-actors-http-ut PUBLIC
  11. contrib-libs-cxxsupp
  12. yutil
  13. library-cpp-cpuid_check
  14. cpp-testing-unittest_main
  15. cpp-actors-http
  16. cpp-actors-testlib
  17. )
  18. set_property(
  19. TARGET
  20. library-cpp-actors-http-ut
  21. PROPERTY
  22. SPLIT_FACTOR
  23. 1
  24. )
  25. add_yunittest(
  26. NAME
  27. library-cpp-actors-http-ut
  28. TEST_TARGET
  29. library-cpp-actors-http-ut
  30. TEST_ARG
  31. --print-before-suite
  32. --print-before-test
  33. --fork-tests
  34. --print-times
  35. --show-fails
  36. )
  37. set_yunittest_property(
  38. TEST
  39. library-cpp-actors-http-ut
  40. PROPERTY
  41. LABELS
  42. SMALL
  43. )
  44. set_yunittest_property(
  45. TEST
  46. library-cpp-actors-http-ut
  47. PROPERTY
  48. PROCESSORS
  49. 1
  50. )
  51. target_allocator(library-cpp-actors-http-ut
  52. system_allocator
  53. )
  54. vcs_info(library-cpp-actors-http-ut)