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/cmGlobalWatcomWMakeGenerator.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/cmGlobalWatcomWMakeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalWatcomWMakeGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalWatcomWMakeGenerator.cxx b/Source/cmGlobalWatcomWMakeGenerator.cxx index 8fd4b30..6f6c8cf 100644 --- a/Source/cmGlobalWatcomWMakeGenerator.cxx +++ b/Source/cmGlobalWatcomWMakeGenerator.cxx @@ -23,6 +23,7 @@ cmGlobalWatcomWMakeGenerator::cmGlobalWatcomWMakeGenerator() this->FindMakeProgramFile = "CMakeFindWMake.cmake"; this->ForceUnixPaths = false; this->ToolSupportsColor = true; + this->NeedSymbolicMark = true; this->EmptyCommandsHack = "@cd ."; } |