cmake: use WINDOWS instead of WIN32.

This commit is contained in:
Ryan C. Gordon 2018-08-02 16:21:43 -04:00
parent 0df9d798c0
commit 4e4f2996d1

View File

@ -212,7 +212,7 @@ set(SDL_CFLAGS "")
# When building shared lib for Windows with MinGW,
# avoid the DLL having a "lib" prefix
if(WIN32)
if(WINDOWS)
set(CMAKE_SHARED_LIBRARY_PREFIX "")
endif()