diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-07-29 13:16:15 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-07-29 13:16:15 (GMT) |
commit | 72d13ff4826ff3e120fe2d052495b0806c2a5b90 (patch) | |
tree | 0450cc1c5c941733beb91c636669be02b7162786 /Tests/RunCMake/include_directories/RunCMakeTest.cmake | |
parent | 650e61f833c2cc3ace8405a22eb80a10cfc6187c (diff) | |
download | CMake-72d13ff4826ff3e120fe2d052495b0806c2a5b90.zip CMake-72d13ff4826ff3e120fe2d052495b0806c2a5b90.tar.gz CMake-72d13ff4826ff3e120fe2d052495b0806c2a5b90.tar.bz2 |
install: Remove error condition using INCLUDES DESTINATION without EXPORT.
Commit 650e61f8 (Add a convenient way to add the includes install
dir to the INTERFACE., 2013-01-05) introduced an error case for
using the install(TARGETS) command with specified INCLUDES DESTINATION,
but no specified EXPORT set.
It is convenient to use a variable to set the various destinations
for different outputs (as KDE does), and some targets such as
executables are installed but not exported. This was triggering
the error case, but as it is a common case, remove the error.
Diffstat (limited to 'Tests/RunCMake/include_directories/RunCMakeTest.cmake')
-rw-r--r-- | Tests/RunCMake/include_directories/RunCMakeTest.cmake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Tests/RunCMake/include_directories/RunCMakeTest.cmake b/Tests/RunCMake/include_directories/RunCMakeTest.cmake index e582960..520dd44 100644 --- a/Tests/RunCMake/include_directories/RunCMakeTest.cmake +++ b/Tests/RunCMake/include_directories/RunCMakeTest.cmake @@ -9,4 +9,3 @@ run_cmake(RelativePathInInterface) run_cmake(ImportedTarget) run_cmake(RelativePathInGenex) run_cmake(CMP0021) -run_cmake(TargetInterfaceIncludes) |