diff options
author | Brad King <brad.king@kitware.com> | 2006-10-02 14:20:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-02 14:20:53 (GMT) |
commit | e4ec89d0360408cc4ad2bb6428be06749d8b11ba (patch) | |
tree | 731bf6a54de529453b4ca6039ba60c6ca49f0537 /Source/cmGlobalGenerator.cxx | |
parent | bb01a0d6baa948ca35efc8bed91e48756dd13a20 (diff) | |
download | CMake-e4ec89d0360408cc4ad2bb6428be06749d8b11ba.zip CMake-e4ec89d0360408cc4ad2bb6428be06749d8b11ba.tar.gz CMake-e4ec89d0360408cc4ad2bb6428be06749d8b11ba.tar.bz2 |
ENH: Added SYMBOLIC source file property to mark custom command outputs that are never actually created on disk. This is used by the Watcom WMake generator to generate the .SYMBOLIC mark on the files in the make system.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 4b895e2..8c81f08 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -31,6 +31,9 @@ int cmGlobalGenerator::s_TryCompileTimeout = 0; cmGlobalGenerator::cmGlobalGenerator() { + // By default the .SYMBOLIC dependency is not needed on symbolic rules. + this->NeedSymbolicMark = false; + // by default use the native paths this->ForceUnixPaths = false; |