vars.cmake 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/hssl.h
  17. base/hlog.h
  18. base/hbuf.h
  19. base/hmap.h
  20. base/hstring.h
  21. base/hfile.h
  22. base/hdir.h
  23. base/hurl.h
  24. base/hscope.h
  25. base/hthreadpool.h
  26. base/hobjectpool.h
  27. base/ifconfig.h
  28. base/ThreadLocalStorage.h
  29. )
  30. set(UTILS_HEADERS
  31. utils/base64.h
  32. utils/md5.h
  33. utils/sha1.h
  34. utils/json.hpp
  35. utils/singleton.h
  36. utils/iniparser.h
  37. utils/hendian.h
  38. utils/hmain.h
  39. )
  40. set(EVENT_HEADERS
  41. event/hloop.h
  42. event/nlog.h
  43. event/nmap.h
  44. )
  45. set(EVPP_HEADERS
  46. evpp/Buffer.h
  47. evpp/Callback.h
  48. evpp/Channel.h
  49. evpp/Event.h
  50. evpp/EventLoop.h
  51. evpp/EventLoopThread.h
  52. evpp/EventLoopThreadPool.h
  53. evpp/Status.h
  54. evpp/TcpClient.h
  55. evpp/TcpServer.h
  56. evpp/UdpClient.h
  57. evpp/UdpServer.h
  58. )
  59. set(PROTOCOL_HEADERS
  60. protocol/icmp.h
  61. protocol/dns.h
  62. protocol/ftp.h
  63. protocol/smtp.h
  64. )
  65. set(HTTP_HEADERS
  66. http/httpdef.h
  67. http/http2def.h
  68. http/grpcdef.h
  69. http/wsdef.h
  70. http/http_content.h
  71. http/HttpMessage.h
  72. http/HttpParser.h
  73. http/WebSocketParser.h
  74. http/WebSocketChannel.h
  75. )
  76. set(HTTP_CLIENT_HEADERS http/client/http_client.h http/client/requests.h)
  77. set(HTTP_SERVER_HEADERS
  78. http/server/HttpService.h
  79. http/server/HttpServer.h
  80. http/server/WebSocketServer.h
  81. )
  82. set(CONSUL_HEADERS consul/consul.h)