diff options
author | Sam Spilsbury <SmSpillaz@gmail.com> | 2010-05-18 19:30:17 +0800 |
---|---|---|
committer | Sam Spilsbury <SmSpillaz@gmail.com> | 2010-05-18 19:30:17 +0800 |
commit | 54deec100959dd84fc3ad7df28cfd745883f5644 (patch) | |
tree | 42081f56208e19b994cb53351c2b79d19ac1804b /include | |
parent | 9447ee14f0bc64d005c153eb54247fe8a3b1c44a (diff) | |
download | zcomp-54deec100959dd84fc3ad7df28cfd745883f5644.tar.gz zcomp-54deec100959dd84fc3ad7df28cfd745883f5644.tar.bz2 |
Added DESTDIR support for packaging
Diffstat (limited to 'include')
-rw-r--r-- | include/CMakeLists.txt | 2 | ||||
-rw-r--r-- | include/core/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 6ff6fd0..31b7b94 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -5,7 +5,7 @@ set (_headers install ( FILES ${_headers} - DESTINATION ${includedir}/compiz + DESTINATION ${COMPIZ_DESTDIR}${includedir}/compiz ) add_subdirectory (core) diff --git a/include/core/CMakeLists.txt b/include/core/CMakeLists.txt index 75db4f6..eac25a6 100644 --- a/include/core/CMakeLists.txt +++ b/include/core/CMakeLists.txt @@ -24,5 +24,5 @@ set (_headers install ( FILES ${_headers} - DESTINATION ${includedir}/compiz/core + DESTINATION ${COMPIZ_DESTDIR}${includedir}/compiz/core ) |