aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/precompiled.h
blob: b375dcd06b1b2fd2d8bd877a524f68229a6e86eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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