0%
March 27, 2023

Precompiled Header in CMake Project

C++

Just bundle a set of headers into pch.h, refactor the project approprimately and add the following in the CMakeLists.txt.

target_precompile_headers(target_name PUBLIC src/pch.h)