~ubuntu-branches/debian/experimental/stellarium/experimental

« back to all changes in this revision

Viewing changes to doc/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2012-09-02 16:40:25 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20120902164025-wcm0g7j3uq09557q
Tags: 0.11.4a-1
* Imported Upstream version 0.11.4a
* Add 'DM-Upload-Allowed: yes' to debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
  DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1
25
25
)
26
26
 
27
 
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION share/man/man1)
 
27
IF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)")
 
28
  INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION man/man1)
 
29
ELSE(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)")
 
30
  INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION share/man/man1)
 
31
ENDIF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)")
28
32
 
29
33
ENDIF(UNIX AND NOT WIN32)
30
34