feat: Use precompiled headers for 130-180% speedup (#4494)

This commit is contained in:
Alexandru Ionut Tripon 2025-12-26 23:41:37 +02:00 committed by GitHub
commit 993da92199
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 346 additions and 11 deletions

View file

@ -1,6 +1,9 @@
cmake_minimum_required(VERSION 3.22) # minimum version required by Qt
project(Launcher)
project(Launcher LANGUAGES C CXX)
if(APPLE)
enable_language(OBJC OBJCXX)
endif()
string(COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BUILD_DIR}" IS_IN_SOURCE_BUILD)
if(IS_IN_SOURCE_BUILD)