win32: Deprecate old Windows build system

This commit is contained in:
Nick Wellnhofer 2023-05-25 13:01:48 +02:00
parent 1e8ab6977d
commit e2f21c22d3
2 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,9 @@
Windows port Windows port
============ ============
DEPRECATION WARNING: The build system in the win32 directory is deprecated
and will be removed in a future release. Please switch to CMake.
This directory contains the files required to build this software on the This directory contains the files required to build this software on the
native Windows platform. This is not a place to look for help if you are native Windows platform. This is not a place to look for help if you are
using a POSIX emulator, such as Cygwin. Check the Unix instructions for using a POSIX emulator, such as Cygwin. Check the Unix instructions for

View File

@ -698,6 +698,10 @@ txtOut += "Put static libs in: " + buildLibPrefix + "\n";
txtOut += "Put shared libs in: " + buildSoPrefix + "\n"; txtOut += "Put shared libs in: " + buildSoPrefix + "\n";
txtOut += " Include path: " + buildInclude + "\n"; txtOut += " Include path: " + buildInclude + "\n";
txtOut += " Lib path: " + buildLib + "\n"; txtOut += " Lib path: " + buildLib + "\n";
txtOut += "\n";
txtOut += "DEPRECATION WARNING: The build system in the win32 directory is\n";
txtOut += "deprecated and will be removed in a future release. Please switch\n";
txtOut += "to CMake.\n";
WScript.Echo(txtOut); WScript.Echo(txtOut);
// //