diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-12-22 10:32:57 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-01-02 22:58:05 -0700 |
commit | 828eeaf8960a347777f34ed134c5211717f1d446 (patch) | |
tree | 02254da7ea05c208b35e65cb50ff4c9e43e085e6 /CMakeLists.txt | |
parent | b7188e8c1bfe0e148c3d3e6d08a9004cdfb2264d (diff) |
build: improve man page installation
man pages are extremely useful, but are not generally available on
Windows. This changes the install condition to check for the Windows
cross-compile rather than the toolchain in use. It is possible to build
for Windows using clang in the GNU driver.
Diffstat (limited to 'CMakeLists.txt')
-rwxr-xr-x | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f375289..d4b8d98 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,11 @@ add_subdirectory(src) if(CMARK_TESTS AND (CMARK_SHARED OR CMARK_STATIC)) add_subdirectory(api_test) endif() -add_subdirectory(man) +# TODO(compnerd) should this be enabled for MinGW, which sets CMAKE_SYSTEM_NAME +# to Windows, but defines `MINGW`. +if(NOT CMAKE_SYSTEM_NAME STREQUAL Windows) + add_subdirectory(man) +endif() if(CMARK_TESTS) enable_testing() add_subdirectory(test testdir) |