CMakeLists.txt 524 B

12345678910111213141516171819
  1. #
  2. # Copyright Troy D. Straszheim
  3. #
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # See http://www.boost.org/LICENSE_1_0.txt
  6. #
  7. if (BUILD_DOCUMENTATION_HTML)
  8. # Install style sheets and the main Boost logo
  9. install(FILES boostbook.css docutils.css reference.css ../../boost.png
  10. DESTINATION share/boost-${BOOST_VERSION}/html)
  11. # Install images
  12. install(DIRECTORY images
  13. DESTINATION share/boost-${BOOST_VERSION}/html
  14. COMPONENT Core
  15. PATTERN "CVS" EXCLUDE
  16. PATTERN ".svn" EXCLUDE)
  17. endif ()
粤ICP备19079148号