mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-10 03:44:53 -08:00
17 lines
507 B
C++
17 lines
507 B
C++
|
#ifdef __clang__
|
||
|
#pragma clang diagnostic push
|
||
|
#pragma clang diagnostic ignored "-Wunused-const-variable"
|
||
|
#pragma clang diagnostic ignored "-Wswitch"
|
||
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
||
|
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
||
|
#pragma clang diagnostic ignored "-Wvarargs"
|
||
|
#pragma clang diagnostic ignored "-Wunused-function"
|
||
|
#pragma clang diagnostic ignored "-Wunused-but-set-variable"
|
||
|
#endif
|
||
|
|
||
|
#include "platform/grime.hpp"
|
||
|
|
||
|
#if Build_Unity
|
||
|
# include "engine/engine.cpp"
|
||
|
#endif
|