Last change
on this file since 52 was 50, checked in by Marek Kurdej, 12 years ago |
CMake: updated to conform to the coding style.
|
File size:
1.3 KB
|
Rev | Line | |
---|
[7] | 1 | #################################################
|
---|
| 2 | # ___________ ____ ______ __ __ _____ #
|
---|
| 3 | # \____ \__ \ _/ ___\\____ \| | \/ ___/ #
|
---|
| 4 | # | |_> > __ \\ \___| |_> > | /\___ \ #
|
---|
| 5 | # | __(____ /\___ > __/|____//____ > #
|
---|
| 6 | # |__| \/ \/|__| \/ #
|
---|
| 7 | # #
|
---|
| 8 | #################################################
|
---|
| 9 |
|
---|
| 10 | # ========================================
|
---|
| 11 | # CMake files
|
---|
| 12 | # ========================================
|
---|
| 13 | install(
|
---|
[50] | 14 | DIRECTORY
|
---|
| 15 | ${PACPUS_CMAKE_DIR}
|
---|
| 16 | DESTINATION
|
---|
| 17 | ${PACPUS_INSTALL_DIR}
|
---|
[7] | 18 | )
|
---|
| 19 |
|
---|
| 20 | # ========================================
|
---|
| 21 | # Include files
|
---|
| 22 | # ========================================
|
---|
| 23 | install(
|
---|
[50] | 24 | DIRECTORY
|
---|
| 25 | ${PACPUS_INCLUDE_DIR}
|
---|
| 26 | DESTINATION
|
---|
| 27 | ${PACPUS_INSTALL_DIR}/include
|
---|
[7] | 28 | )
|
---|
| 29 |
|
---|
| 30 | # ========================================
|
---|
| 31 | # Installation of the 3rd party
|
---|
| 32 | # ========================================
|
---|
[50] | 33 | if(PACPUS_INSTALL_3RD)
|
---|
| 34 | install(
|
---|
[7] | 35 | DIRECTORY
|
---|
[50] | 36 | ${PACPUS_3RD_PARTY_DIR}
|
---|
[7] | 37 | DESTINATION
|
---|
[50] | 38 | ${PACPUS_INSTALL_DIR}
|
---|
| 39 | )
|
---|
[7] | 40 | endif()
|
---|
[26] | 41 |
|
---|
| 42 | # ========================================
|
---|
| 43 | # Installation of the documentation
|
---|
| 44 | # ========================================
|
---|
[50] | 45 | if(PACPUS_BUILD_DOC)
|
---|
| 46 | install(
|
---|
| 47 | DIRECTORY
|
---|
| 48 | ${CMAKE_BINARY_DIR}/doc/html
|
---|
| 49 | DESTINATION
|
---|
| 50 | ${PACPUS_INSTALL_DIR}/doc
|
---|
| 51 | )
|
---|
[26] | 52 | endif() |
---|
Note:
See
TracBrowser
for help on using the repository browser.