25 lines
1.0 KiB
C
25 lines
1.0 KiB
C
|
// pch.h: This is a precompiled header file.
|
||
|
// Files listed below are compiled only once, improving build performance for future builds.
|
||
|
// This also affects IntelliSense performance, including code completion and many code browsing features.
|
||
|
// However, files listed here are ALL re-compiled if any one of them is updated between builds.
|
||
|
// Do not add files here that you will be updating frequently as this negates the performance advantage.
|
||
|
|
||
|
#ifndef PCH_H
|
||
|
#define PCH_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
struct IUnknown; // Workaround for "combaseapi.h(229): error C2187: syntax error: 'identifier' was unexpected here" when using /permissive- (https://developercommunity.visualstudio.com/t/error-c2760-in-combaseapih-with-windows-sdk-81-and/185399)
|
||
|
#include "Windows.h"
|
||
|
#endif // #ifdef _WIN32
|
||
|
|
||
|
// add headers that you want to pre-compile here
|
||
|
#include "KYFGLib.h"
|
||
|
|
||
|
#include <string>
|
||
|
#include <string.h>
|
||
|
|
||
|
// #define JSON_IS_AMALGAMATION // note that this is #defined in the project settings
|
||
|
#include "json.h"
|
||
|
|
||
|
#endif //PCH_H
|