CMakeLists.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # ====================================================================
  2. #
  3. # --------------------------------------------------------------------
  4. set(TOOLS_SRC
  5. assist.c
  6. b64dump.c
  7. basespec.c
  8. binout.c
  9. bytespec.c
  10. checkfilename.c
  11. checksum32.c
  12. chrout.c
  13. clr32bitmap.c
  14. codelist.c
  15. codename.c
  16. dataspec.c
  17. decdecode.c
  18. decout.c
  19. decstring.c
  20. efreopen.c
  21. emalloc.c
  22. endian.c
  23. error.c
  24. extra.c
  25. fdchecksum32.c
  26. getoptv.c
  27. hexdecode.c
  28. hexdump.c
  29. hexencode.c
  30. hexload.c
  31. hexoffset.c
  32. hexout.c
  33. hexpeek.c
  34. hexstring.c
  35. hexview.c
  36. hexwrite.c
  37. ipv4spec.c
  38. ipv6spec.c
  39. lookup.c
  40. memdecr.c
  41. memencode.c
  42. memincr.c
  43. memout.c
  44. memswap.c
  45. output.c
  46. putoptv.c
  47. regview32.c
  48. reword.c
  49. set32bitmap.c
  50. strdecr.c
  51. strfbits.c
  52. strincr.c
  53. synonym.c
  54. todigit.c
  55. typelist.c
  56. typename.c
  57. uintspec.c
  58. version.c
  59. )
  60. if (WIN32)
  61. set(TOOLS_SRC ${TOOLS_SRC} __bswap.c gettimeofday.c)
  62. endif (WIN32)
  63. # ====================================================================
  64. #
  65. # --------------------------------------------------------------------
  66. add_library(tools ${TOOLS_SRC})