diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /contrib/restricted/thrift/ya.make | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'contrib/restricted/thrift/ya.make')
-rw-r--r-- | contrib/restricted/thrift/ya.make | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/contrib/restricted/thrift/ya.make b/contrib/restricted/thrift/ya.make new file mode 100644 index 0000000000..87fa705203 --- /dev/null +++ b/contrib/restricted/thrift/ya.make @@ -0,0 +1,100 @@ +LIBRARY() + +VERSION(0.10.0) + +LICENSE(Apache-2.0) + +LICENSE_TEXTS(.yandex_meta/licenses.list.txt) + +NO_UTIL() + +NO_COMPILER_WARNINGS() + +ADDINCL( + GLOBAL contrib/restricted/thrift +) + +PEERDIR( + contrib/libs/libevent + contrib/libs/openssl + contrib/libs/zlib + contrib/restricted/boost/interprocess + contrib/restricted/boost/locale + contrib/restricted/boost/math + contrib/restricted/boost/system + contrib/restricted/boost/thread +) + +SRCS( + thrift/TApplicationException.cpp + thrift/TOutput.cpp + thrift/VirtualProfiling.cpp + thrift/async/TAsyncChannel.cpp + thrift/async/TAsyncProtocolProcessor.cpp + thrift/async/TConcurrentClientSyncInfo.cpp + thrift/async/TEvhttpClientChannel.cpp + thrift/async/TEvhttpServer.cpp + thrift/concurrency/StdMonitor.cpp + thrift/concurrency/StdMutex.cpp + thrift/concurrency/StdThreadFactory.cpp + thrift/concurrency/ThreadManager.cpp + thrift/concurrency/TimerManager.cpp + thrift/concurrency/Util.cpp + thrift/processor/PeekProcessor.cpp + thrift/protocol/TBase64Utils.cpp + thrift/protocol/TDebugProtocol.cpp + thrift/protocol/THeaderProtocol.cpp + thrift/protocol/TJSONProtocol.cpp + thrift/protocol/TMultiplexedProtocol.cpp + thrift/protocol/TProtocol.cpp + thrift/server/TConnectedClient.cpp + thrift/server/TNonblockingServer.cpp + thrift/server/TServer.cpp + thrift/server/TServerFramework.cpp + thrift/server/TSimpleServer.cpp + thrift/server/TThreadPoolServer.cpp + thrift/server/TThreadedServer.cpp + thrift/transport/TBufferTransports.cpp + thrift/transport/TFDTransport.cpp + thrift/transport/TFileTransport.cpp + thrift/transport/THeaderTransport.cpp + thrift/transport/THttpClient.cpp + thrift/transport/THttpServer.cpp + thrift/transport/THttpTransport.cpp + thrift/transport/TNonblockingSSLServerSocket.cpp + thrift/transport/TNonblockingServerSocket.cpp + thrift/transport/TPipe.cpp + thrift/transport/TPipeServer.cpp + thrift/transport/TSSLServerSocket.cpp + thrift/transport/TSSLSocket.cpp + thrift/transport/TServerSocket.cpp + thrift/transport/TSimpleFileTransport.cpp + thrift/transport/TSocket.cpp + thrift/transport/TSocketPool.cpp + thrift/transport/TTransportException.cpp + thrift/transport/TTransportUtils.cpp + thrift/transport/TZlibTransport.cpp +) + +IF (OS_WINDOWS) + PEERDIR( + contrib/restricted/boost/scope_exit + ) + SRCS( + thrift/windows/GetTimeOfDay.cpp + thrift/windows/OverlappedSubmissionThread.cpp + thrift/windows/SocketPair.cpp + thrift/windows/TWinsockSingleton.cpp + thrift/windows/WinFcntl.cpp + ) +ELSE() + CXXFLAGS( + -Wno-deprecated-declarations + -Wno-unused-function + -Wno-unused-parameter + -Wno-unused-private-field + -Wno-unused-variable + ) +ENDIF() + +END() |