[go: up one dir, main page]

File: CMakeLists.txt

package info (click to toggle)
clog 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 2,744 kB
  • sloc: cpp: 8,669; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required (VERSION 2.8)
message ("-- Configuring man pages")
set (man_FILES clog.1)
foreach (man_FILE ${man_FILES})
  configure_file (
    man/${man_FILE}.in
    man/${man_FILE})
endforeach (man_FILE)

install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/man/ DESTINATION share/man/man1
                                                    FILES_MATCHING PATTERN "*.1")