mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
23 lines
446 B
C
23 lines
446 B
C
|
// File: lzham_config.h
|
||
|
// See Copyright Notice and license at the end of include/lzham.h
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define LZHAM_BUILD_DEBUG
|
||
|
|
||
|
#ifndef DEBUG
|
||
|
#define DEBUG
|
||
|
#endif
|
||
|
#else
|
||
|
#define LZHAM_BUILD_RELEASE
|
||
|
|
||
|
#ifndef NDEBUG
|
||
|
#define NDEBUG
|
||
|
#endif
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
#error DEBUG cannot be defined in LZHAM_BUILD_RELEASE
|
||
|
#endif
|
||
|
#endif
|
||
|
#define LZHAM_BUFFERED_PRINTF 0
|
||
|
#define LZHAM_PERF_SECTIONS 0
|