/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4
Code/Engine/Foundation/UserConfig.h
26 строк
731 B
jankrassnigg
Milestone 4
27 мар 2014, 19:08
27 мар 2014, 19:08
bfef15a
Код
Авторство
О чём код?
#pragma once // Enables profiling features. #undef EZ_USE_PROFILING #define EZ_USE_PROFILING EZ_ON #undef EZ_USE_PROFILING_GPA #define EZ_USE_PROFILING_GPA EZ_ON // Enables some basic checks, even in release builds. #undef EZ_COMPILE_FOR_DEVELOPMENT #define EZ_COMPILE_FOR_DEVELOPMENT EZ_ON // Compile the Engine as a DLL or a static library. #if EZ_ENABLED(EZ_PLATFORM_WINDOWS) // Always compile as a DLL on Windows #undef EZ_COMPILE_ENGINE_AS_DLL #define EZ_COMPILE_ENGINE_AS_DLL EZ_ON #else // Compile as a static library on all other platforms. #undef EZ_COMPILE_ENGINE_AS_DLL #define EZ_COMPILE_ENGINE_AS_DLL EZ_OFF #endif #undef EZ_USE_ALLOCATION_STACK_TRACING #define EZ_USE_ALLOCATION_STACK_TRACING EZ_ON