Add user option -DMAN_INSTALL_DIR=path to CMakeLists.txt - see #193
Seems this is required to accomodate different man install directories used by Slackware, BSD and perhaps others.
This commit is contained in:
parent
b2b9f1d6f2
commit
d8a4498803
|
@ -23,6 +23,9 @@ set( LIB_TYPE STATIC ) # set default static
|
|||
option( BUILD_SHARED_LIB "Set ON to build Shared (DLL) Library" OFF )
|
||||
option( BUILD_TAB2SPACE "Set ON to build utility app, tab2space" OFF )
|
||||
option( BUILD_SAMPLE_CODE "Set ON to build the sample code" OFF )
|
||||
if (NOT MAN_INSTALL_DIR)
|
||||
set(MAN_INSTALL_DIR share/man/man1)
|
||||
endif ()
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX)
|
||||
set( WARNING_FLAGS -Wall )
|
||||
|
@ -213,7 +216,7 @@ if (UNIX)
|
|||
VERBATIM
|
||||
)
|
||||
|
||||
install(FILES ${CMAKE_BINARY_DIR}/${TIDY_MANFILE} DESTINATION share/man/man1)
|
||||
install(FILES ${CMAKE_BINARY_DIR}/${TIDY_MANFILE} DESTINATION ${MAN_INSTALL_DIR})
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
4.9.26
|
||||
4.9.27
|
Loading…
Reference in a new issue