diff options
author | Brad King <brad.king@kitware.com> | 2014-11-13 23:32:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-11-14 21:16:00 (GMT) |
commit | 67bd514adce689f4c7f537cdc446c01f7373f5a5 (patch) | |
tree | 4ed0993ebebd0ee07f0cdb6b43e3fc718cea7df2 /Source/cmNinjaTargetGenerator.cxx | |
parent | ef42e57d470db499a41c8bca695391c3e3e5cb86 (diff) | |
download | CMake-67bd514adce689f4c7f537cdc446c01f7373f5a5.zip CMake-67bd514adce689f4c7f537cdc446c01f7373f5a5.tar.gz CMake-67bd514adce689f4c7f537cdc446c01f7373f5a5.tar.bz2 |
Ninja: Refactor restat to be a string internally
This will allow values other than "" and "1" to be generated in
the rules.ninja file.
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index 80213d8..57fbcd3 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -477,7 +477,7 @@ cmNinjaTargetGenerator deptype, /*rspfile*/ "", /*rspcontent*/ "", - /*restat*/ false, + /*restat*/ "", /*generator*/ false); } |