File: CMakeLists.txt

package info (click to toggle)
paraview 3.14.1-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 234,468 kB
  • sloc: cpp: 2,166,013; ansic: 801,575; xml: 58,068; tcl: 49,247; python: 43,091; java: 16,625; fortran: 12,224; sh: 11,722; yacc: 5,688; perl: 3,128; makefile: 2,228; lex: 1,311; lisp: 486; asm: 471; pascal: 228
file content (15 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2009 Sandia Corporation.
# Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
# the U.S. Government retains certain rights in this software.

IF (NOT ICET_INSTALL_NO_DEVELOPMENT)
  SET(manSections 3)
  FOREACH (section ${manSections})
    FILE(GLOB manFiles
      "${CMAKE_CURRENT_SOURCE_DIR}/man${section}/*.${section}"
      )
    INSTALL(FILES ${manFiles}
      DESTINATION "${ICET_INSTALL_MAN_DIR}/man${section}"
      )
  ENDFOREACH(section)
ENDIF (NOT ICET_INSTALL_NO_DEVELOPMENT)