diff options
author | Brad King <brad.king@kitware.com> | 2002-09-10 21:24:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-09-10 21:24:25 (GMT) |
commit | d9326ed78d66bc7d408699d948e117764f3c6edf (patch) | |
tree | bed34be43d0ca4f3e7e62579eefa663828c3c94a /Source | |
parent | 5608a9a129ce577f7f14f70dc7ff06c27ae92e3d (diff) | |
download | CMake-d9326ed78d66bc7d408699d948e117764f3c6edf.zip CMake-d9326ed78d66bc7d408699d948e117764f3c6edf.tar.gz CMake-d9326ed78d66bc7d408699d948e117764f3c6edf.tar.bz2 |
ERR: Added missing include of stdio.h for sprintf.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 5ed7183..955602c 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -32,6 +32,8 @@ #include "cmGlobalUnixMakefileGenerator.h" #endif +#include <stdio.h> + cmake::cmake() { m_Verbose = false; |