vars.cmake 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/http_content.h
  70. http/HttpMessage.h
  71. http/HttpParser.h
  72. )
  73. set(HTTP_CLIENT_HEADERS http/client/http_client.h http/client/requests.h)
  74. set(HTTP_SERVER_HEADERS http/server/HttpService.h http/server/HttpServer.h)
  75. set(CONSUL_HEADERS consul/consul.h)