15 lines
301 B
C
15 lines
301 B
C
|
|
//
|
||
|
|
// Created by coder on 2021/1/19.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef MIX_CC_CONFIG_H
|
||
|
|
#define MIX_CC_CONFIG_H
|
||
|
|
|
||
|
|
/* #undef LOCAL_VM */
|
||
|
|
#define CONFIG_FILE_PATH "/users/dsc/code/config/config.json"
|
||
|
|
#define CONFIG_LOG_PATH "/users/dsc/log"
|
||
|
|
#define CONFIG_LOG_MAX_SIZE 10
|
||
|
|
#define CONFIG_LOG_MAX_NUM 3
|
||
|
|
|
||
|
|
#endif //MIX_CC_CONFIG_H
|