mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-21 14:23:03 +01:00
23 lines
559 B
C
23 lines
559 B
C
/*
|
|
* Copyright 2010-2017 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
|
|
*/
|
|
|
|
#ifndef BX_CONFIG_H_HEADER_GUARD
|
|
#define BX_CONFIG_H_HEADER_GUARD
|
|
|
|
#include "bx.h"
|
|
|
|
#ifndef BX_CONFIG_ALLOCATOR_DEBUG
|
|
# define BX_CONFIG_ALLOCATOR_DEBUG 0
|
|
#endif // BX_CONFIG_DEBUG_ALLOC
|
|
|
|
#ifndef BX_CONFIG_SUPPORTS_THREADING
|
|
# define BX_CONFIG_SUPPORTS_THREADING !(0 \
|
|
|| BX_PLATFORM_EMSCRIPTEN \
|
|
|| BX_CRT_NONE \
|
|
)
|
|
#endif // BX_CONFIG_SUPPORTS_THREADING
|
|
|
|
#endif // BX_CONFIG_H_HEADER_GUARD
|