vars.cmake 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # see Makefile.vars
  2. set(BASE_HEADERS
  3. base/hplatform.h
  4. base/hdef.h
  5. base/hatomic.h
  6. base/herr.h
  7. base/htime.h
  8. base/hmath.h
  9. base/hbase.h
  10. base/hversion.h
  11. base/hsysinfo.h
  12. base/hproc.h
  13. base/hthread.h
  14. base/hmutex.h
  15. base/hsocket.h
  16. base/hlog.h
  17. base/hbuf.h
  18. base/hmain.h
  19. base/hendian.h
  20. )
  21. set(SSL_HEADERS
  22. ssl/hssl.h
  23. )
  24. set(EVENT_HEADERS
  25. event/hloop.h
  26. event/nlog.h
  27. )
  28. set(UTIL_HEADERS
  29. util/base64.h
  30. util/md5.h
  31. util/sha1.h
  32. )
  33. set(CPPUTIL_HEADERS
  34. cpputil/hmap.h
  35. cpputil/hstring.h
  36. cpputil/hfile.h
  37. cpputil/hpath.h
  38. cpputil/hdir.h
  39. cpputil/hurl.h
  40. cpputil/hscope.h
  41. cpputil/hthreadpool.h
  42. cpputil/hobjectpool.h
  43. cpputil/ifconfig.h
  44. cpputil/iniparser.h
  45. cpputil/json.hpp
  46. cpputil/singleton.h
  47. cpputil/ThreadLocalStorage.h
  48. )
  49. set(EVPP_HEADERS
  50. evpp/Buffer.h
  51. evpp/Channel.h
  52. evpp/Event.h
  53. evpp/EventLoop.h
  54. evpp/EventLoopThread.h
  55. evpp/EventLoopThreadPool.h
  56. evpp/Status.h
  57. evpp/TcpClient.h
  58. evpp/TcpServer.h
  59. evpp/UdpClient.h
  60. evpp/UdpServer.h
  61. )
  62. set(PROTOCOL_HEADERS
  63. protocol/icmp.h
  64. protocol/dns.h
  65. protocol/ftp.h
  66. protocol/smtp.h
  67. )
  68. set(HTTP_HEADERS
  69. http/httpdef.h
  70. http/wsdef.h
  71. http/http_content.h
  72. http/HttpMessage.h
  73. http/HttpParser.h
  74. http/WebSocketParser.h
  75. http/WebSocketChannel.h
  76. )
  77. set(HTTP2_HEADERS
  78. http/http2def.h
  79. http/grpcdef.h
  80. )
  81. set(HTTP_CLIENT_HEADERS
  82. http/client/http_client.h
  83. http/client/requests.h
  84. http/client/axios.h
  85. http/client/WebSocketClient.h)
  86. set(HTTP_SERVER_HEADERS
  87. http/server/HttpServer.h
  88. http/server/HttpService.h
  89. http/server/HttpContext.h
  90. http/server/HttpResponseWriter.h
  91. http/server/WebSocketServer.h
  92. )