platform: allow win32 to pass platform checks

This commit is contained in:
Danny Robson 2017-01-23 14:54:22 +11:00
parent c640c55181
commit 86822e7f6b

View File

@ -8,6 +8,7 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
set(LINUX 1)
elseif (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
set(FREEBSD 1)
elseif (WIN32)
else()
message (FATAL_ERROR "unknown platform")
endif()