fix: disable precompiled headers for macOS (#6104)
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
- Bugfix: Fixed the channel name input not being focused when opening the select-channel dialog. (#6096)
|
- 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)
|
- 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
|
## 2.5.3-beta.1
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -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(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(USE_SYSTEM_MINIAUDIO "Build Chatterino with your system miniaudio" OFF)
|
||||||
option(BUILD_WITH_CRASHPAD "Build chatterino with crashpad" 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_QT6 "Build with Qt6" On)
|
||||||
option(BUILD_WITH_LIBNOTIFY "Build with libnotify" ON)
|
option(BUILD_WITH_LIBNOTIFY "Build with libnotify" ON)
|
||||||
option(CHATTERINO_GENERATE_COVERAGE "Generate coverage files" OFF)
|
option(CHATTERINO_GENERATE_COVERAGE "Generate coverage files" OFF)
|
||||||
|
|||||||
+1
-1
@@ -982,7 +982,7 @@ if (BUILD_APP)
|
|||||||
endif()
|
endif()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (USE_PRECOMPILED_HEADERS)
|
if (USE_PRECOMPILED_HEADERS AND NOT APPLE)
|
||||||
message(STATUS "Building with precompiled headers")
|
message(STATUS "Building with precompiled headers")
|
||||||
target_precompile_headers(${LIBRARY_PROJECT} PRIVATE PrecompiledHeader.hpp)
|
target_precompile_headers(${LIBRARY_PROJECT} PRIVATE PrecompiledHeader.hpp)
|
||||||
else ()
|
else ()
|
||||||
|
|||||||
Reference in New Issue
Block a user