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/cmNinjaNormalTargetGenerator.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/cmNinjaNormalTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaNormalTargetGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx index 0614ae7..48c4a2d 100644 --- a/Source/cmNinjaNormalTargetGenerator.cxx +++ b/Source/cmNinjaNormalTargetGenerator.cxx @@ -256,7 +256,7 @@ cmNinjaNormalTargetGenerator /*deptype*/ "", rspfile, rspcontent, - /*restat*/ false, + /*restat*/ "", /*generator*/ false); } @@ -278,7 +278,7 @@ cmNinjaNormalTargetGenerator /*deptype*/ "", /*rspfile*/ "", /*rspcontent*/ "", - /*restat*/ false, + /*restat*/ "", /*generator*/ false); else this->GetGlobalGenerator()->AddRule("CMAKE_SYMLINK_LIBRARY", @@ -292,7 +292,7 @@ cmNinjaNormalTargetGenerator /*deptype*/ "", /*rspfile*/ "", /*rspcontent*/ "", - /*restat*/ false, + /*restat*/ "", /*generator*/ false); } } |