21 lines
323 B
C
21 lines
323 B
C
/*
|
|
* constants.h
|
|
*
|
|
* Created on: Feb 24, 2019
|
|
* Author: ezra
|
|
*/
|
|
|
|
#ifndef CORE_CONSTANTS_H_
|
|
#define CORE_CONSTANTS_H_
|
|
|
|
#ifndef NDEBUG
|
|
#define LOG_PATH "log.txt"
|
|
#define CONFIG_PATH "piscan.config"
|
|
#else
|
|
#define LOG_PATH "~/piscan.log"
|
|
#define CONFIG_PATH "~/piscan.config"
|
|
#endif
|
|
|
|
|
|
#endif /* CORE_CONSTANTS_H_ */
|