diff options
Diffstat (limited to 'dep')
-rw-r--r-- | dep/g3dlite/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dep/g3dlite/CMakeLists.txt b/dep/g3dlite/CMakeLists.txt index fc22b4e10b8..2397bd8d05b 100644 --- a/dep/g3dlite/CMakeLists.txt +++ b/dep/g3dlite/CMakeLists.txt @@ -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() |