fix: disable precompiled headers for macOS (#6104)

This commit is contained in:
pajlada
2025-03-21 23:27:49 +01:00
committed by GitHub
parent a70acbfda9
commit 41acd4e971
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -4,6 +4,7 @@
- Bugfix: Fixed the channel name input not being focused when opening the select-channel dialog. (#6096)
- Bugfix: Fixed inputs in dialogs not having a border around and padding in them. (#6098)
- Dev: Temporarily disable precompiled header support for macOS. (#6104)
## 2.5.3-beta.1
+1 -1
View File
@@ -20,7 +20,7 @@ option(USE_SYSTEM_QTKEYCHAIN "Use system QtKeychain library" OFF)
option(BUILD_WITH_QTKEYCHAIN "Build Chatterino with support for your system key chain" ON)
option(USE_SYSTEM_MINIAUDIO "Build Chatterino with your system miniaudio" OFF)
option(BUILD_WITH_CRASHPAD "Build chatterino with crashpad" OFF)
option(USE_PRECOMPILED_HEADERS "Use precompiled headers" ON)
option(USE_PRECOMPILED_HEADERS "Use precompiled headers (Temporarily not supported on macOS)" ON)
option(BUILD_WITH_QT6 "Build with Qt6" On)
option(BUILD_WITH_LIBNOTIFY "Build with libnotify" ON)
option(CHATTERINO_GENERATE_COVERAGE "Generate coverage files" OFF)
+1 -1
View File
@@ -982,7 +982,7 @@ if (BUILD_APP)
endif()
endif ()
if (USE_PRECOMPILED_HEADERS)
if (USE_PRECOMPILED_HEADERS AND NOT APPLE)
message(STATUS "Building with precompiled headers")
target_precompile_headers(${LIBRARY_PROJECT} PRIVATE PrecompiledHeader.hpp)
else ()