diff options
author | Jeff Davey <jdavey@apple.com> | 2015-08-18 13:20:19 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-08-28 13:17:12 -0500 |
commit | 9caf754a59f166bcf62a2cf84f82720ae110ab74 (patch) | |
tree | 4065163ca9a357bb78d3357ad4417461ea4eeeef /man | |
parent | 2f2f08e60c8ade1840c2ff31ec36e934ef6d03ec (diff) | |
download | portable-9caf754a59f166bcf62a2cf84f82720ae110ab74.tar.gz portable-9caf754a59f166bcf62a2cf84f82720ae110ab74.tar.bz2 portable-9caf754a59f166bcf62a2cf84f82720ae110ab74.zip |
Add install targets and shared libraries to CMake
Diffstat (limited to 'man')
-rw-r--r-- | man/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt new file mode 100644 index 0000000..5923f58 --- /dev/null +++ b/man/CMakeLists.txt | |||
@@ -0,0 +1,9 @@ | |||
1 | install(DIRECTORY . | ||
2 | DESTINATION share/man/man3 | ||
3 | FILES_MATCHING PATTERN "*.3" | ||
4 | ) | ||
5 | |||
6 | install(DIRECTORY . | ||
7 | DESTINATION share/man/man1 | ||
8 | FILES_MATCHING PATTERN "*.1" | ||
9 | ) | ||