26 lines
581 B
C
26 lines
581 B
C
//
|
|
// all.h
|
|
// img4tool
|
|
//
|
|
// Created by tihmstar on 15.06.16.
|
|
// Copyright © 2016 tihmstar. All rights reserved.
|
|
//
|
|
|
|
#ifndef all_h
|
|
#define all_h
|
|
|
|
#define error(a ...) printf("[Error] %s: ",__func__),printf(a)
|
|
#define warning(a ...) printf("[Warning] %s: ",__func__),printf(a)
|
|
|
|
#ifdef DEBUG //this is for developing with Xcode
|
|
#define IMG4TOOL_VERSION_COMMIT_COUNT "Debug"
|
|
#define IMG4TOOL_VERSION_COMMIT_SHA "Build: " __DATE__ " " __TIME__
|
|
#define HAVE_LIBCOMPRESSION
|
|
#else
|
|
//#include <config.h>
|
|
#define IMG4TOOL_NOLZFSE
|
|
#define IMG4TOOL_NOOPENSSL
|
|
#endif
|
|
|
|
#endif /* all_h */
|