mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-18 19:32:41 +00:00
CMake: Error out if trying to build generic builds on Windows
Generic builds have never been supported on Windows.
This commit is contained in:
parent
dfeb58b018
commit
6551c9bc24
@ -198,6 +198,9 @@ else()
|
||||
endif()
|
||||
|
||||
if(ENABLE_GENERIC)
|
||||
if(WIN32)
|
||||
message(FATAL_ERROR "Generic builds are not supported on Windows!")
|
||||
endif()
|
||||
message(STATUS "Warning! Building generic build!")
|
||||
set(_M_GENERIC 1)
|
||||
add_definitions(-D_M_GENERIC=1)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user