mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Removed cotire PCH Integrated native PCH by CMake with the same BUILD_USE_PCH flag Added new option to avoid extra files in 'build/include' folder and replace it by symlink Symlink creates link to the origin file, it has some benefits from debug and build side. The CMake parameter for symlink is 'BUILD_INCLUDE_SYMLINK'
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
#ifndef TKERNEL_PCH_H
|
|
#define TKERNEL_PCH_H
|
|
|
|
// Standard library headers
|
|
#include <type_traits>
|
|
|
|
// Windows-specific headers (for MSVC)
|
|
#ifdef _WIN32
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#include <windows.h> // For Windows API functions like WideCharToMultiByte
|
|
#include <tchar.h> // For Unicode/MBCS mappings
|
|
#ifdef GetObject
|
|
#undef GetObject
|
|
#endif
|
|
#endif
|
|
|
|
// TKernel headers
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <Standard_DefineHandle.hxx>
|
|
#include <Standard_Macro.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
#include <Standard_Stream.hxx>
|
|
#include <Standard_GUID.hxx>
|
|
|
|
#include <Precision.hxx>
|
|
|
|
#include <Quantity_Color.hxx>
|
|
#include <Quantity_ColorRGBA.hxx>
|
|
#include <Quantity_HArray1OfColor.hxx>
|
|
#include <Quantity_TypeOfColor.hxx>
|
|
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include <TCollection_ExtendedString.hxx>
|
|
#include <TCollection_HAsciiString.hxx>
|
|
#include <TCollection_HExtendedString.hxx>
|
|
|
|
#include <NCollection_BaseAllocator.hxx>
|
|
#include <NCollection_Array1.hxx>
|
|
#include <NCollection_Array2.hxx>
|
|
#include <NCollection_Map.hxx>
|
|
#include <NCollection_DataMap.hxx>
|
|
#include <NCollection_List.hxx>
|
|
#include <NCollection_Sequence.hxx>
|
|
#include <NCollection_IndexedDataMap.hxx>
|
|
#include <NCollection_IndexedMap.hxx>
|
|
|
|
#endif // TKERNEL_PCH_H
|