Dep/g3d: Enable PCH

This commit is contained in:
Shauren
2025-06-11 21:43:33 +02:00
parent 1dc1141480
commit e9a2f84fd3

View File

@@ -77,3 +77,14 @@ set_target_properties(g3dlib
PROPERTIES
FOLDER
"dep")
# Generate precompiled header
if(USE_COREPCH)
list(APPEND g3dlib_PCH_HEADERS
[["G3D/Any.h"]]
[["G3D/Array.h"]]
[["G3D/BinaryOutput.h"]]
[["G3D/Vector3.h"]])
add_cxx_pch(g3dlib "${g3dlib_PCH_HEADERS}")
endif()