1
0

vars.cmake 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # see Makefile.vars
  2. set(BASE_HEADERS
  3. base/hplatform.h
  4. base/hdef.h
  5. base/hversion.h
  6. base/hbase.h
  7. base/hsysinfo.h
  8. base/hproc.h
  9. base/hmath.h
  10. base/htime.h
  11. base/herr.h
  12. base/hlog.h
  13. base/hmutex.h
  14. base/hthread.h
  15. base/hsocket.h
  16. base/hbuf.h
  17. base/hurl.h
  18. base/hgui.h
  19. base/ssl_ctx.h
  20. base/hmap.h
  21. base/hstring.h
  22. base/hvar.h
  23. base/hobj.h
  24. base/hfile.h
  25. base/hdir.h
  26. base/hscope.h
  27. base/hthreadpool.h
  28. base/hobjectpool.h
  29. base/ifconfig.h
  30. )
  31. set(UTILS_HEADERS
  32. utils/base64.h
  33. utils/md5.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(PROTOCOL_HEADERS
  46. protocol/icmp.h
  47. protocol/dns.h
  48. protocol/ftp.h
  49. protocol/smtp.h
  50. )
  51. set(HTTP_HEADERS
  52. http/httpdef.h
  53. http/http2def.h
  54. http/grpcdef.h
  55. http/http_content.h
  56. http/HttpMessage.h
  57. http/HttpParser.h
  58. )
  59. set(HTTP_CLIENT_HEADERS http/client/http_client.h)
  60. set(HTTP_SERVER_HEADERS http/server/HttpService.h http/server/HttpServer.h)
  61. set(CONSUL_HEADERS consul/consul.h)