mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 09:09:18 +01:00
Workaround for compiler issue with Visual Studio 17.10
This commit is contained in:
parent
5209677f2f
commit
9d366937cd
@ -56,6 +56,12 @@ add_executable(CemuBin
|
|||||||
mainLLE.cpp
|
mainLLE.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(MSVC AND MSVC_VERSION EQUAL 1940)
|
||||||
|
# workaround for an msvc issue on VS 17.10 where generated ILK files are too large
|
||||||
|
# see https://developercommunity.visualstudio.com/t/After-updating-to-VS-1710-the-size-of-/10665511
|
||||||
|
set_target_properties(CemuBin PROPERTIES LINK_FLAGS "/INCREMENTAL:NO")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
target_sources(CemuBin PRIVATE
|
target_sources(CemuBin PRIVATE
|
||||||
resource/cemu.rc
|
resource/cemu.rc
|
||||||
|
Loading…
Reference in New Issue
Block a user