22 lines
522 B
C
22 lines
522 B
C
/*
|
|
* Copyright 2010-2018 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 \
|
|
)
|
|
#endif // BX_CONFIG_SUPPORTS_THREADING
|
|
|
|
#endif // BX_CONFIG_H_HEADER_GUARD
|