CMakeLists.txt 635 B

123456789101112131415161718192021
  1. # TODO(compnerd) ensure that benchmark.h data_private.h introduction_private.h
  2. # io_private.h layout_private.h mach_private.h private.h queue_private.h
  3. # source_private.h are included in the source tarball
  4. if (INSTALL_PRIVATE_HEADERS)
  5. install(FILES
  6. benchmark.h
  7. data_private.h
  8. introspection_private.h
  9. io_private.h
  10. layout_private.h
  11. mach_private.h
  12. private.h
  13. queue_private.h
  14. source_private.h
  15. time_private.h
  16. workloop_private.h
  17. DESTINATION
  18. "${INSTALL_DISPATCH_HEADERS_DIR}")
  19. endif()