diff options
author | David Cole <david.cole@kitware.com> | 2008-09-11 18:34:04 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2008-09-11 18:34:04 (GMT) |
commit | bd1935dcd12d23a23878dc727545743fb078c7cb (patch) | |
tree | f25e552c73dc9ea3c31ff186829f5bdd905c1324 /Source/cmPolicies.h | |
parent | 0e5319f21dc6a6079a8af82e40ca3e9da563b6de (diff) | |
download | CMake-bd1935dcd12d23a23878dc727545743fb078c7cb.zip CMake-bd1935dcd12d23a23878dc727545743fb078c7cb.tar.gz CMake-bd1935dcd12d23a23878dc727545743fb078c7cb.tar.bz2 |
ENH: Improve FILE GLOB_RECURSE handling of symlinks with a new CMake policy. CMP0009 establishes NEW default behavior of not recursing through symlinks. OLD default behavior or explicit FOLLOW_SYMLINKS argument to FILE GLOB_RECURSE will still recurse through symlinks.
Diffstat (limited to 'Source/cmPolicies.h')
-rw-r--r-- | Source/cmPolicies.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index 5284034..06079b0 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -49,6 +49,7 @@ public: CMP0006, // BUNDLE install rules needed for MACOSX_BUNDLE targets CMP0007, // list command handling of empty elements CMP0008, // Full-path libraries must be a valid library file name + CMP0009, // GLOB_RECURSE should not follow symlinks by default // Always the last entry. Useful mostly to avoid adding a comma // the last policy when adding a new one. |