mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
12 lines
386 B
CMake
12 lines
386 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
message ("-- Configuring man pages")
|
|
set (man_FILES tasksh.1)
|
|
foreach (man_FILE ${man_FILES})
|
|
configure_file (
|
|
man/${man_FILE}.in
|
|
man/${man_FILE})
|
|
endforeach (man_FILE)
|
|
|
|
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man/ DESTINATION ${TASKSH_MAN1DIR}
|
|
FILES_MATCHING PATTERN "*.1")
|
|
|