summaryrefslogtreecommitdiffstats
path: root/Source/cmcldeps.cxx
diff options
context:
space:
mode:
authorOrgad Shaneh <orgads@gmail.com>2021-11-29 07:34:53 (GMT)
committerOrgad Shaneh <orgads@gmail.com>2021-11-29 07:46:36 (GMT)
commit1336a76380d39df8476bdd66a3e2097a6a90d23f (patch)
tree93aacab2d006131df5c43fa8c6c1d31cd3435220 /Source/cmcldeps.cxx
parentf9a657ee5d27c89d14e5050c48a1d98cf5bf2e05 (diff)
downloadCMake-1336a76380d39df8476bdd66a3e2097a6a90d23f.zip
CMake-1336a76380d39df8476bdd66a3e2097a6a90d23f.tar.gz
CMake-1336a76380d39df8476bdd66a3e2097a6a90d23f.tar.bz2
cmcldeps: Suppress rc dummy output
Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 Copyright (C) Microsoft Corporation. All rights reserved.
Diffstat (limited to 'Source/cmcldeps.cxx')
-rw-r--r--Source/cmcldeps.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx
index 5c27ac1..8921aa0 100644
--- a/Source/cmcldeps.cxx
+++ b/Source/cmcldeps.cxx
@@ -294,7 +294,8 @@ int main()
return exit_code;
// compile rc file with rc.exe
- return process(srcfilename, "", objfile, prefix, binpath + " " + rest);
+ return process(srcfilename, "", objfile, prefix, binpath + " " + rest,
+ std::string(), true);
}
usage("Invalid language specified.");