diff options
author | Shannon Booth <shannon.ml.booth@gmail.com> | 2020-12-22 23:57:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-12-23 14:59:03 (GMT) |
commit | d43f4692e0c5e6f71305be74fbed7c6120057d9d (patch) | |
tree | 2a696060ac2ea23dbca178c79dc1f4cd184e8ef6 /Tests/CustomCommand/empty_command.cxx | |
parent | c56d3bef3e6b105465c41cc241ab26cce2327393 (diff) | |
download | CMake-d43f4692e0c5e6f71305be74fbed7c6120057d9d.zip CMake-d43f4692e0c5e6f71305be74fbed7c6120057d9d.tar.gz CMake-d43f4692e0c5e6f71305be74fbed7c6120057d9d.tar.bz2 |
Ninja: Omit custom commands with an empty COMMAND
Fixes: #21063
Diffstat (limited to 'Tests/CustomCommand/empty_command.cxx')
-rw-r--r-- | Tests/CustomCommand/empty_command.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/CustomCommand/empty_command.cxx b/Tests/CustomCommand/empty_command.cxx new file mode 100644 index 0000000..f8b643a --- /dev/null +++ b/Tests/CustomCommand/empty_command.cxx @@ -0,0 +1,4 @@ +int main() +{ + return 0; +} |