mirror of
https://github.com/sogou/workflow.git
synced 2026-02-08 01:33:17 +08:00
114 lines
2.8 KiB
Plaintext
114 lines
2.8 KiB
Plaintext
cmake_minimum_required(VERSION 3.6)
|
|
|
|
set(COMMON_KERNEL_HEADERS
|
|
src/kernel/CommRequest.h
|
|
src/kernel/CommScheduler.h
|
|
src/kernel/Communicator.h
|
|
src/kernel/SleepRequest.h
|
|
src/kernel/ExecRequest.h
|
|
src/kernel/IORequest.h
|
|
src/kernel/Executor.h
|
|
src/kernel/list.h
|
|
src/kernel/mpoller.h
|
|
src/kernel/poller.h
|
|
src/kernel/msgqueue.h
|
|
src/kernel/rbtree.h
|
|
src/kernel/SubTask.h
|
|
src/kernel/thrdpool.h
|
|
)
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux" OR CMAKE_SYSTEM_NAME STREQUAL "Android")
|
|
set(INCLUDE_KERNEL_HEADERS
|
|
${COMMON_KERNEL_HEADERS}
|
|
src/kernel/IOService_linux.h
|
|
)
|
|
elseif (UNIX)
|
|
set(INCLUDE_KERNEL_HEADERS
|
|
${COMMON_KERNEL_HEADERS}
|
|
src/kernel/IOService_thread.h
|
|
)
|
|
else ()
|
|
message(FATAL_ERROR "IOService unsupported.")
|
|
endif ()
|
|
|
|
set(INCLUDE_HEADERS
|
|
src/protocol/ProtocolMessage.h
|
|
src/protocol/http_parser.h
|
|
src/protocol/HttpMessage.h
|
|
src/protocol/HttpUtil.h
|
|
src/protocol/redis_parser.h
|
|
src/protocol/RedisMessage.h
|
|
src/protocol/mysql_stream.h
|
|
src/protocol/MySQLMessage.h
|
|
src/protocol/MySQLMessage.inl
|
|
src/protocol/MySQLResult.h
|
|
src/protocol/MySQLResult.inl
|
|
src/protocol/MySQLUtil.h
|
|
src/protocol/mysql_parser.h
|
|
src/protocol/mysql_types.h
|
|
src/protocol/mysql_byteorder.h
|
|
src/protocol/PackageWrapper.h
|
|
src/protocol/dns_types.h
|
|
src/protocol/dns_parser.h
|
|
src/protocol/DnsMessage.h
|
|
src/protocol/DnsUtil.h
|
|
src/protocol/TLVMessage.h
|
|
src/protocol/ConsulDataTypes.h
|
|
src/server/WFServer.h
|
|
src/server/WFDnsServer.h
|
|
src/server/WFHttpServer.h
|
|
src/server/WFRedisServer.h
|
|
src/server/WFMySQLServer.h
|
|
src/client/WFHttpChunkedClient.h
|
|
src/client/WFMySQLConnection.h
|
|
src/client/WFRedisSubscriber.h
|
|
src/client/WFConsulClient.h
|
|
src/client/WFDnsClient.h
|
|
src/manager/DnsCache.h
|
|
src/manager/WFGlobal.h
|
|
src/manager/UpstreamManager.h
|
|
src/manager/RouteManager.h
|
|
src/manager/EndpointParams.h
|
|
src/manager/WFFuture.h
|
|
src/manager/WFFacilities.h
|
|
src/manager/WFFacilities.inl
|
|
src/util/json_parser.h
|
|
src/util/EncodeStream.h
|
|
src/util/LRUCache.h
|
|
src/util/StringUtil.h
|
|
src/util/URIParser.h
|
|
src/factory/WFConnection.h
|
|
src/factory/WFTask.h
|
|
src/factory/WFTask.inl
|
|
src/factory/WFGraphTask.h
|
|
src/factory/WFTaskError.h
|
|
src/factory/WFTaskFactory.h
|
|
src/factory/WFTaskFactory.inl
|
|
src/factory/WFAlgoTaskFactory.h
|
|
src/factory/WFAlgoTaskFactory.inl
|
|
src/factory/Workflow.h
|
|
src/factory/WFOperator.h
|
|
src/factory/WFResourcePool.h
|
|
src/factory/WFMessageQueue.h
|
|
src/factory/HttpTaskImpl.inl
|
|
src/factory/RedisTaskImpl.inl
|
|
src/nameservice/WFNameService.h
|
|
src/nameservice/WFDnsResolver.h
|
|
src/nameservice/WFServiceGovernance.h
|
|
src/nameservice/UpstreamPolicies.h
|
|
)
|
|
|
|
if(KAFKA STREQUAL "y")
|
|
set(INCLUDE_HEADERS
|
|
${INCLUDE_HEADERS}
|
|
src/util/crc32c.h
|
|
src/protocol/KafkaMessage.h
|
|
src/protocol/KafkaDataTypes.h
|
|
src/protocol/KafkaResult.h
|
|
src/protocol/kafka_parser.h
|
|
src/client/WFKafkaClient.h
|
|
src/factory/KafkaTaskImpl.inl
|
|
)
|
|
endif()
|
|
|