Magisk/native/jni/include/flags.h

21 lines
562 B
C
Raw Normal View History

2018-09-27 09:56:56 +02:00
#pragma once
2019-02-12 11:17:02 +01:00
/* Include this header anywhere accessing MAGISK_DEBUG, MAGISK_VERSION, MAGISK_VER_CODE.
2018-09-27 09:56:56 +02:00
*
2019-02-12 11:17:02 +01:00
* This file is for precise incremental builds. We can make sure code that uses
2018-09-27 09:56:56 +02:00
* external flags are re-compiled by updating the timestamp of this file
* */
2019-02-12 11:17:02 +01:00
#define quote(s) #s
#define str(s) quote(s)
#define MAGISK_VERSION str(__MVSTR)
#define MAGISK_VER_CODE __MCODE
#define SHOW_VER(name) str(name) " v" MAGISK_VERSION "(" str(MAGISK_VER_CODE) ")"
#define FULL_VER(name) SHOW_VER(name) " (by topjohnwu)"
2018-09-27 09:56:56 +02:00
2019-02-12 11:17:02 +01:00
#ifdef __MDBG
#define MAGISK_DEBUG
2018-09-27 09:56:56 +02:00
#endif