mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
LCC: Make CMake build without warnings on LCC 1.21
This commit is contained in:
@@ -14,8 +14,13 @@
|
||||
#pragma warning(disable : 1572) /* floating-point equality test */
|
||||
#endif
|
||||
|
||||
#if defined(__LCC__) && defined(__EDG__) && (__LCC__ == 123)
|
||||
#if defined(__LCC__) && defined(__EDG__)
|
||||
#if __LCC__ == 123
|
||||
#pragma diag_suppress 2910 /* excess -Wunused-function in 1.23.x */
|
||||
#elif __LCC__ == 121
|
||||
#pragma diag_suppress 2727 /* excess -Wunused-function in 1.21.x */
|
||||
#include <limits.h> /* ..._MIN, ..._MAX constants */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#cmakedefine HAVE_ENVIRON_NOT_REQUIRE_PROTOTYPE
|
||||
|
||||
Reference in New Issue
Block a user