mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2025-01-28 00:19:27 +03:00
17 lines
256 B
C
17 lines
256 B
C
|
#pragma once
|
||
|
#ifndef UT_PCH
|
||
|
#define UT_PCH
|
||
|
|
||
|
#include "../core/precompiled.h"
|
||
|
|
||
|
#ifdef WIN
|
||
|
#include <windows.h>
|
||
|
#include <crtdbg.h> /* Heap verifying */
|
||
|
#elif MACOSX
|
||
|
#define __ICONS__
|
||
|
#include <Cocoa/Cocoa.h>
|
||
|
#endif
|
||
|
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
#endif //UT_PCH
|