p7zip-rar/CPP/7zip/Compress/Lzham/lzhamdecomp/lzham_config.h

25 lines
484 B
C
Raw Normal View History

2017-10-11 12:40:22 +02:00
// File: lzham_config.h
// See Copyright Notice and license at the end of include/lzham.h
#pragma once
#if defined(_DEBUG) || defined(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
// HACK HACK
#define LZHAM_BUFFERED_PRINTF 0
#define LZHAM_PERF_SECTIONS 0