From 9f55b9e77ed89517b1171a70beee7a5cb2e4ff1a Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Thu, 6 Sep 2018 23:58:41 -0600 Subject: [PATCH] CMake: Don't Interrogate with deprecated -longlong on Windows --- cmake/macros/Interrogate.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/macros/Interrogate.cmake b/cmake/macros/Interrogate.cmake index dc87547c9d..5d83cea25b 100644 --- a/cmake/macros/Interrogate.cmake +++ b/cmake/macros/Interrogate.cmake @@ -29,7 +29,7 @@ set(INTERROGATE_EXCLUDE_REGEXES ".*_src\\..*") if(WIN32) - list(APPEND IGATE_FLAGS -longlong __int64 -D_X86_ -D__STDC__=1 -DWIN32_VC -D "_declspec(param)=" -D "__declspec(param)=" -D_near -D_far -D__near -D__far -D_WIN32 -D__stdcall -DWIN32) + list(APPEND IGATE_FLAGS -D_X86_ -D__STDC__=1 -DWIN32_VC -D "_declspec(param)=" -D "__declspec(param)=" -D_near -D_far -D__near -D__far -D_WIN32 -D__stdcall -DWIN32) endif() if(INTERROGATE_VERBOSE) list(APPEND IGATE_FLAGS "-v")