mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
10 lines
451 B
CMake
10 lines
451 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
message ("-- Configuring documentation")
|
|
|
|
configure_file (man/timew.1.in man/timew.1)
|
|
|
|
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man/ DESTINATION ${TIMEW_MAN1DIR} FILES_MATCHING PATTERN "*.1")
|
|
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/themes/ DESTINATION ${TIMEW_DOCDIR}/themes)
|
|
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/holidays/ DESTINATION ${TIMEW_DOCDIR}/holidays)
|
|
|