diff options
author | Michael A. Jackson <mike.jackson@bluequartz.net> | 2008-11-01 13:15:41 +0000 |
---|---|---|
committer | Michael A. Jackson <mike.jackson@bluequartz.net> | 2008-11-01 13:15:41 +0000 |
commit | 1cc4d6b1c8973439648538aae09fcdeb5309c51e (patch) | |
tree | f595493ec386fb5d6a56157254877e3faaf00177 /doc | |
parent | 3bf3ff2d6661d3c9068a7fa751062d8d32f8dc2a (diff) | |
download | boost-1cc4d6b1c8973439648538aae09fcdeb5309c51e.tar.gz |
Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor
[SVN r49510]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 3 | ||||
-rw-r--r-- | doc/src/CMakeLists.txt | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000000..46d3147238 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,3 @@ +if (BUILD_DOCUMENTATION) + add_subdirectory(src) +endif () diff --git a/doc/src/CMakeLists.txt b/doc/src/CMakeLists.txt new file mode 100644 index 0000000000..3904232256 --- /dev/null +++ b/doc/src/CMakeLists.txt @@ -0,0 +1,13 @@ +if (BUILD_DOCUMENTATION_HTML) + # Install style sheets and the main Boost logo + install(FILES boostbook.css docutils.css reference.css ../../boost.png + DESTINATION share/boost-${BOOST_VERSION}/html) + + # Install images + install(DIRECTORY images + DESTINATION share/boost-${BOOST_VERSION}/html + COMPONENT Core + PATTERN "CVS" EXCLUDE + PATTERN ".svn" EXCLUDE) +endif () + |