vars.cmake 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # see Makefile.vars
  2. set(BASE_HEADERS
  3. base/hplatform.h
  4. base/hdef.h
  5. base/hatomic.h
  6. base/hversion.h
  7. base/hbase.h
  8. base/hsysinfo.h
  9. base/hproc.h
  10. base/hmath.h
  11. base/htime.h
  12. base/herr.h
  13. base/hlog.h
  14. base/hmutex.h
  15. base/hthread.h
  16. base/hsocket.h
  17. base/hssl.h
  18. base/hbuf.h
  19. base/hurl.h
  20. base/hgui.h
  21. base/hmap.h
  22. base/hstring.h
  23. base/hvar.h
  24. base/hobj.h
  25. base/hfile.h
  26. base/hdir.h
  27. base/hscope.h
  28. base/hthreadpool.h
  29. base/hobjectpool.h
  30. base/ifconfig.h
  31. )
  32. set(UTILS_HEADERS
  33. utils/base64.h
  34. utils/md5.h
  35. utils/json.hpp
  36. utils/singleton.h
  37. utils/iniparser.h
  38. utils/hendian.h
  39. utils/hmain.h
  40. )
  41. set(EVENT_HEADERS
  42. event/hloop.h
  43. event/nlog.h
  44. event/nmap.h
  45. )
  46. set(PROTOCOL_HEADERS
  47. protocol/icmp.h
  48. protocol/dns.h
  49. protocol/ftp.h
  50. protocol/smtp.h
  51. )
  52. set(HTTP_HEADERS
  53. http/httpdef.h
  54. http/http2def.h
  55. http/grpcdef.h
  56. http/http_content.h
  57. http/HttpMessage.h
  58. http/HttpParser.h
  59. )
  60. set(HTTP_CLIENT_HEADERS http/client/http_client.h http/client/requests.h)
  61. set(HTTP_SERVER_HEADERS http/server/HttpService.h http/server/HttpServer.h)
  62. set(CONSUL_HEADERS consul/consul.h)