diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-25 22:58:27 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-25 22:58:27 -0700 |
commit | b14ece9e725175f98011dda8749d046d25b2f2bb (patch) | |
tree | b3cefe7ab422bfed187d8f21a03aa00c43456832 | |
parent | 995050a54053b32b9a34892f3b86c127d5aad5b9 (diff) |
Added man/CMakeLists.txt to install man pages.
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | man/CMakeLists.txt | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 59c2f0a..36d2e67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,6 +86,7 @@ install(DIRECTORY include DESTINATION . # COMPONENT devel) add_subdirectory(src) +add_subdirectory(man) include(InstallRequiredSystemLibraries) diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt new file mode 100644 index 0000000..6b4b56f --- /dev/null +++ b/man/CMakeLists.txt @@ -0,0 +1,3 @@ +if(UNIX) + INSTALL(FILES man1/cmark.1 DESTINATION share/man/man1) +endif(UNIX) |