[Code] Optimize PCH Config (Faster Builds) (#4951)

This commit is contained in:
Chris Miles
2025-06-22 13:52:23 -05:00
committed by GitHub
parent 5ac9dd04e4
commit 4005b68383
5 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -842,7 +842,7 @@ IF (UNIX)
ENDIF (UNIX)
IF (WIN32 AND EQEMU_BUILD_PCH)
TARGET_PRECOMPILE_HEADERS(common PRIVATE pch/pch.h)
TARGET_PRECOMPILE_HEADERS(common PRIVATE pch/std-pch.h)
ENDIF ()
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
+7
View File
@@ -0,0 +1,7 @@
#include "../types.h"
#include "../database.h"
#include "../strings.h"
#include "../eqemu_logsys.h"
#include "../eqemu_logsys_log_aliases.h"
#include "../features.h"
#include "../global_define.h"