source: pacpusframework/trunk/cmake/PacpusInstall.cmake@ 187

Last change on this file since 187 was 187, checked in by morasjul, 11 years ago

Fixed: towards Qt4/Qt5 compatibility.

  • Property svn:executable set to *
File size: 1.3 KB
RevLine 
[89]1#################################################
2# ___________ ____ ______ __ __ _____ #
3# \____ \__ \ _/ ___\\____ \| | \/ ___/ #
4# | |_> > __ \\ \___| |_> > | /\___ \ #
5# | __(____ /\___ > __/|____//____ > #
6# |__| \/ \/|__| \/ #
7# #
8#################################################
9
[185]10################################################################################
11# CMake
[89]12install(
13 DIRECTORY
14 ${PACPUS_CMAKE_DIR}
15 DESTINATION
16 ${PACPUS_INSTALL_DIR}
17)
18
[185]19################################################################################
20# INCLUDES
[89]21install(
22 DIRECTORY
23 ${PACPUS_INCLUDE_DIR}
24 DESTINATION
[187]25 ${PACPUS_INSTALL_DIR}
[89]26)
27
[185]28################################################################################
[89]29# Installation of the 3rd party
30if(PACPUS_INSTALL_3RD)
31 install(
32 DIRECTORY
33 ${PACPUS_3RD_PARTY_DIR}
34 DESTINATION
35 ${PACPUS_INSTALL_DIR}
36 )
37endif()
38
[185]39################################################################################
[89]40# Installation of the documentation
41if(PACPUS_BUILD_DOC)
42 install(
43 DIRECTORY
44 ${CMAKE_BINARY_DIR}/doc/html
45 DESTINATION
46 ${PACPUS_INSTALL_DIR}/doc
47 )
[185]48endif()
Note: See TracBrowser for help on using the repository browser.