mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-27 10:51:00 -05: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
22b0be97a6
commit
b35f83bdcf
|
|
@ -194,6 +194,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