mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 02:59:22 -05:00
Drop Visual Studio 7 .NET 2003 generator
This generator has been deprecated since CMake 3.6. Remove it.
This commit is contained in:
@@ -85,8 +85,6 @@ int main(int argc, char* argv[])
|
||||
int length;
|
||||
while (cmsysProcess_WaitForData(cp, &data, &length, 0)) {
|
||||
// Translate NULL characters in the output into valid text.
|
||||
// Visual Studio 7 puts these characters in the output of its
|
||||
// build process.
|
||||
for (int i = 0; i < length; ++i) {
|
||||
if (data[i] == '\0') {
|
||||
data[i] = ' ';
|
||||
|
||||
Reference in New Issue
Block a user