1
0

vars.cmake 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. )
  29. set(UTILS_HEADERS
  30. utils/base64.h
  31. utils/md5.h
  32. utils/json.hpp
  33. utils/singleton.h
  34. utils/iniparser.h
  35. utils/hendian.h
  36. utils/hmain.h
  37. )
  38. set(EVENT_HEADERS
  39. event/hloop.h
  40. event/nlog.h
  41. event/nmap.h
  42. )
  43. set(PROTOCOL_HEADERS
  44. protocol/icmp.h
  45. protocol/dns.h
  46. protocol/ftp.h
  47. protocol/smtp.h
  48. )
  49. set(HTTP_HEADERS
  50. http/httpdef.h
  51. http/http2def.h
  52. http/grpcdef.h
  53. http/http_content.h
  54. http/HttpMessage.h
  55. http/HttpParser.h
  56. )
  57. set(HTTP_CLIENT_HEADERS http/client/http_client.h http/client/requests.h)
  58. set(HTTP_SERVER_HEADERS http/server/HttpService.h http/server/HttpServer.h)
  59. set(CONSUL_HEADERS consul/consul.h)