23 lines
333 B
C
23 lines
333 B
C
#ifndef GTEST_H
|
|
#define GTEST_H
|
|
|
|
////////////////////////////////
|
|
//~ Layer dependencies
|
|
|
|
#include "../base/base.h"
|
|
inline void GT_StartupDeps(void)
|
|
{
|
|
BaseMain();
|
|
}
|
|
|
|
////////////////////////////////
|
|
//~ Layer headers
|
|
|
|
#include "gtest_core.h"
|
|
#if PlatformIsWindows
|
|
# include "dx12/gtest_dx12.h"
|
|
#endif
|
|
void GT_Main(void);
|
|
|
|
#endif
|