cmake: Don't use PCH with Qt6.

This commit is contained in:
Admiral H. Curtiss
2022-05-22 01:19:44 +02:00
parent 6ea7af13e8
commit 580c721c82
19 changed files with 90 additions and 3 deletions

View File

@ -205,3 +205,8 @@ if(ENABLE_SDL)
message(STATUS "SDL NOT found, disabling SDL input")
endif()
endif()
if(MSVC)
# Add precompiled header
target_link_libraries(inputcommon PRIVATE use_pch)
endif()