How to set a specific precompiled header file in Xcode?

Is there a way to install a non-confidential precompiled header file in Xcode? For example, instead of Project_Prefix.pch, which is a precompiled header, can I set it to SomeOtherHeader.h?

+4
source share
2 answers

Select the target, select Build Options, find the prefix header and change the setting

+16
source

In Xcode 6.1, it is located under Build Settings> Apple LLVM 6.0 - Language

+4
source

Source: https://habr.com/ru/post/1444393/


All Articles