vars.cmake 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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/hendian.h
  20. )
  21. set(UTIL_HEADERS
  22. util/base64.h
  23. util/md5.h
  24. util/sha1.h
  25. )
  26. set(EVENT_HEADERS
  27. event/hloop.h
  28. event/nlog.h
  29. )
  30. set(CPPUTIL_HEADERS
  31. cpputil/hmap.h
  32. cpputil/hstring.h
  33. cpputil/hfile.h
  34. cpputil/hdir.h
  35. cpputil/hurl.h
  36. cpputil/hmain.h
  37. cpputil/hscope.h
  38. cpputil/hthreadpool.h
  39. cpputil/hobjectpool.h
  40. cpputil/ifconfig.h
  41. cpputil/iniparser.h
  42. cpputil/json.hpp
  43. cpputil/singleton.h
  44. cpputil/ThreadLocalStorage.h
  45. )
  46. set(EVPP_HEADERS
  47. evpp/Buffer.h
  48. evpp/Callback.h
  49. evpp/Channel.h
  50. evpp/Event.h
  51. evpp/EventLoop.h
  52. evpp/EventLoopThread.h
  53. evpp/EventLoopThreadPool.h
  54. evpp/Status.h
  55. evpp/TcpClient.h
  56. evpp/TcpServer.h
  57. evpp/UdpClient.h
  58. evpp/UdpServer.h
  59. )
  60. set(PROTOCOL_HEADERS
  61. protocol/icmp.h
  62. protocol/dns.h
  63. protocol/ftp.h
  64. protocol/smtp.h
  65. )
  66. set(HTTP_HEADERS
  67. http/httpdef.h
  68. http/http2def.h
  69. http/grpcdef.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(HTTP_CLIENT_HEADERS
  78. http/client/http_client.h
  79. http/client/requests.h
  80. http/client/WebSocketClient.h)
  81. set(HTTP_SERVER_HEADERS
  82. http/server/HttpService.h
  83. http/server/HttpServer.h
  84. http/server/HttpResponseWriter.h
  85. http/server/WebSocketServer.h
  86. )