diff options
author | thegeorg <thegeorg@yandex-team.com> | 2022-10-24 21:10:49 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2022-10-24 21:10:49 +0300 |
commit | d7c3d059f9dcb74cd142a940c0ebfc6998871ddd (patch) | |
tree | 41af92889d6a49d36931a93b50a30e918e058557 /contrib/libs/poco/Net | |
parent | 41e8dfe1db3b9e32a7d1497494d73fbb9f8aec00 (diff) | |
download | ydb-d7c3d059f9dcb74cd142a940c0ebfc6998871ddd.tar.gz |
Drop some add_defines=False setting from yamaker projects
Diffstat (limited to 'contrib/libs/poco/Net')
-rw-r--r-- | contrib/libs/poco/Net/CMakeLists.darwin.txt | 6 | ||||
-rw-r--r-- | contrib/libs/poco/Net/CMakeLists.linux.txt | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/contrib/libs/poco/Net/CMakeLists.darwin.txt b/contrib/libs/poco/Net/CMakeLists.darwin.txt index 49bc4ed4b2..8c281d5b75 100644 --- a/contrib/libs/poco/Net/CMakeLists.darwin.txt +++ b/contrib/libs/poco/Net/CMakeLists.darwin.txt @@ -9,7 +9,11 @@ add_library(libs-poco-Net) target_compile_options(libs-poco-Net PRIVATE - -DPOCO_SOCKETADDRESS_DONT_PREFER_IPV4 + -DPOCO_ENABLE_CPP11 + -DPOCO_ENABLE_CPP14 + -DPOCO_NO_AUTOMATIC_LIBS + -DPOCO_UNBUNDLED + -DPOCO_OS_FAMILY_UNIX -Wno-everything ) target_include_directories(libs-poco-Net PUBLIC diff --git a/contrib/libs/poco/Net/CMakeLists.linux.txt b/contrib/libs/poco/Net/CMakeLists.linux.txt index f5e5249730..0a2e22dbfd 100644 --- a/contrib/libs/poco/Net/CMakeLists.linux.txt +++ b/contrib/libs/poco/Net/CMakeLists.linux.txt @@ -9,7 +9,11 @@ add_library(libs-poco-Net) target_compile_options(libs-poco-Net PRIVATE - -DPOCO_SOCKETADDRESS_DONT_PREFER_IPV4 + -DPOCO_ENABLE_CPP11 + -DPOCO_ENABLE_CPP14 + -DPOCO_NO_AUTOMATIC_LIBS + -DPOCO_UNBUNDLED + -DPOCO_OS_FAMILY_UNIX -DPOCO_HAVE_FD_EPOLL -Wno-everything ) |