Add underscore only for mingw32

checking WIN32 is not sufficient
This commit is contained in:
Martin Kroeker 2019-06-29 20:02:13 +02:00 committed by GitHub
parent 96ef7afa49
commit 9638c2df2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ set(FU "")
if (APPLE OR (MSVC AND NOT ${CMAKE_C_COMPILER_ID} MATCHES "Clang"))
set(FU "_")
endif()
if(MINGW)
if(MINGW AND NOT MINGW64)
set(FU "_")
endif()