正在显示
100 个修改的文件
包含
229 行增加
和
301 行删除
@@ -130,7 +130,9 @@ | @@ -130,7 +130,9 @@ | ||
130 | "videodev2.h": "c", | 130 | "videodev2.h": "c", |
131 | "jzsdk_widget.h": "c", | 131 | "jzsdk_widget.h": "c", |
132 | "dji_sdk_config.h": "c", | 132 | "dji_sdk_config.h": "c", |
133 | - "hal_uart.h": "c" | 133 | + "hal_uart.h": "c", |
134 | + "jzsdkbase.h": "c", | ||
135 | + "dji_logger.h": "c" | ||
134 | }, | 136 | }, |
135 | "Codegeex.GenerationPreference": "automatic", | 137 | "Codegeex.GenerationPreference": "automatic", |
136 | "C_Cpp.dimInactiveRegions": false | 138 | "C_Cpp.dimInactiveRegions": false |
1 | # 编译链的配置 | 1 | # 编译链的配置 |
2 | 2 | ||
3 | #1、编译链与设备类型的选择 | 3 | #1、编译链与设备类型的选择 |
4 | -set(DEVICE_NAME JZ_C1) | 4 | +set(DEVICE_NAME JZ_U3D) |
5 | #上一行为禁止修改行 | 5 | #上一行为禁止修改行 |
6 | 6 | ||
7 | message("**************************JZSDK构建编译开始***************************\n") | 7 | message("**************************JZSDK构建编译开始***************************\n") |
@@ -22,13 +22,16 @@ static T_JZsdkReturnCode JZsdk_PrepareSystemEnvironment() | @@ -22,13 +22,16 @@ static T_JZsdkReturnCode JZsdk_PrepareSystemEnvironment() | ||
22 | 22 | ||
23 | 23 | ||
24 | //初始化sdk | 24 | //初始化sdk |
25 | -T_JZsdkReturnCode JZsdk_LibInit() | 25 | +T_JZsdkReturnCode JZsdk_LibInit(int LogFlag) |
26 | { | 26 | { |
27 | //环境初始化 | 27 | //环境初始化 |
28 | JZsdk_PrepareSystemEnvironment(); | 28 | JZsdk_PrepareSystemEnvironment(); |
29 | 29 | ||
30 | + if (LogFlag == JZ_FLAGCODE_ON) | ||
31 | + { | ||
30 | //1、初始化log | 32 | //1、初始化log |
31 | JZsdk_LoggerInit(); | 33 | JZsdk_LoggerInit(); |
34 | + } | ||
32 | 35 | ||
33 | //2、任务管理系统初始化 | 36 | //2、任务管理系统初始化 |
34 | TaskManagement_Init(); | 37 | TaskManagement_Init(); |
@@ -26,7 +26,7 @@ extern "C" { | @@ -26,7 +26,7 @@ extern "C" { | ||
26 | /* Exported types ------------------------------------------------------------*/ | 26 | /* Exported types ------------------------------------------------------------*/ |
27 | 27 | ||
28 | /* Exported functions --------------------------------------------------------*/ | 28 | /* Exported functions --------------------------------------------------------*/ |
29 | -T_JZsdkReturnCode JZsdk_LibInit(); | 29 | +T_JZsdkReturnCode JZsdk_LibInit(int LogFlag); |
30 | 30 | ||
31 | 31 | ||
32 | #ifdef __cplusplus | 32 | #ifdef __cplusplus |
@@ -474,7 +474,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -474,7 +474,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
474 | 474 | ||
475 | case JZ_INSCODE_5BFRAME_OPUS_DECODE_STATUS: | 475 | case JZ_INSCODE_5BFRAME_OPUS_DECODE_STATUS: |
476 | { | 476 | { |
477 | - char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x59, 0xf2, 0x00, 0x00, 0x23}; | 477 | + char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x59, 0xf2, 0x00, 0x00, 0x23}; |
478 | memcpy(str, sendbuf, 12); | 478 | memcpy(str, sendbuf, 12); |
479 | *str_len = 12; | 479 | *str_len = 12; |
480 | } | 480 | } |
@@ -323,7 +323,7 @@ T_JZsdkReturnCode Main_APP_Psdk() | @@ -323,7 +323,7 @@ T_JZsdkReturnCode Main_APP_Psdk() | ||
323 | int value[5] = {0, 0, 0, 0, 0}; | 323 | int value[5] = {0, 0, 0, 0, 0}; |
324 | 324 | ||
325 | //sdklib加载 | 325 | //sdklib加载 |
326 | - JZsdk_LibInit(); | 326 | + JZsdk_LibInit(JZ_FLAGCODE_ON); |
327 | 327 | ||
328 | //hal加载 | 328 | //hal加载 |
329 | JZsdk_Hal_Init(); | 329 | JZsdk_Hal_Init(); |
@@ -366,7 +366,7 @@ int Main_APP_Uart() | @@ -366,7 +366,7 @@ int Main_APP_Uart() | ||
366 | int value[5] = {0, 0, 0, 0, 0}; | 366 | int value[5] = {0, 0, 0, 0, 0}; |
367 | 367 | ||
368 | //lib库初始化 | 368 | //lib库初始化 |
369 | - JZsdk_LibInit(); | 369 | + JZsdk_LibInit(JZ_FLAGCODE_ON); |
370 | 370 | ||
371 | JZsdk_Hal_Init(); | 371 | JZsdk_Hal_Init(); |
372 | 372 | ||
@@ -396,7 +396,7 @@ int Main_TestAPP() | @@ -396,7 +396,7 @@ int Main_TestAPP() | ||
396 | { | 396 | { |
397 | int value[5] = {0, 0, 0, 0, 0}; | 397 | int value[5] = {0, 0, 0, 0, 0}; |
398 | 398 | ||
399 | - JZsdk_LibInit(); | 399 | + JZsdk_LibInit(JZ_FLAGCODE_ON); |
400 | 400 | ||
401 | JZsdk_Hal_Init(); | 401 | JZsdk_Hal_Init(); |
402 | 402 |
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | #define VERSION_CHOOSE_H | 7 | #define VERSION_CHOOSE_H |
8 | #include "JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h" | 8 | #include "JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h" |
9 | //1~10行 除了D可以修改版本选择 禁止动任何东西 | 9 | //1~10行 除了D可以修改版本选择 禁止动任何东西 |
10 | -#define DEVICE_VERSION JZ_C1 | 10 | +#define DEVICE_VERSION JZ_U3D |
11 | 11 | ||
12 | //禁止修改行 选择是串口程序 还是 psdk程序 | 12 | //禁止修改行 选择是串口程序 还是 psdk程序 |
13 | #define APP_VERSION APP_PSDK | 13 | #define APP_VERSION APP_PSDK |
@@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
19 | #define MAJOR_VERSION 0x01 | 19 | #define MAJOR_VERSION 0x01 |
20 | #define MINOR_VERSION 0x03 | 20 | #define MINOR_VERSION 0x03 |
21 | #define MODIFY_VERSION 0x10 | 21 | #define MODIFY_VERSION 0x10 |
22 | -#define DEBUG_VERSION 0x04 | 22 | +#define DEBUG_VERSION 0x00 |
23 | 23 | ||
24 | //禁止修改行 滤波方式 | 24 | //禁止修改行 滤波方式 |
25 | #define FILTERING_TYPE HIGH_PASS_FILTERING | 25 | #define FILTERING_TYPE HIGH_PASS_FILTERING |
@@ -899,12 +899,12 @@ static T_JZsdkReturnCode RecvDeal_audio_GetMusicList(int Port, char *getbuf) | @@ -899,12 +899,12 @@ static T_JZsdkReturnCode RecvDeal_audio_GetMusicList(int Port, char *getbuf) | ||
899 | #ifdef MEGAPHONE_CONFIG_STATUS_ON | 899 | #ifdef MEGAPHONE_CONFIG_STATUS_ON |
900 | 900 | ||
901 | //刷新歌曲列表 | 901 | //刷新歌曲列表 |
902 | - // ret = Megaphone_Flush_MusicList(); | ||
903 | - // if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
904 | - // { | ||
905 | - // HalSend_type1Send_Reply_Failure(Port, FrameSequence); | ||
906 | - // return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
907 | - // } | 902 | + ret = Megaphone_Flush_MusicList(); |
903 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
904 | + { | ||
905 | + HalSend_type1Send_Reply_Failure(Port, FrameSequence); | ||
906 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
907 | + } | ||
908 | 908 | ||
909 | //解析获取的类型 | 909 | //解析获取的类型 |
910 | int type = getbuf[9]; | 910 | int type = getbuf[9]; |
@@ -1289,14 +1289,14 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音é‡ï¼ŒéŸ³é‡ | @@ -1289,14 +1289,14 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音é‡ï¼ŒéŸ³é‡ | ||
1289 | 1289 | ||
1290 | now_volume=value;//获取当前音量 | 1290 | now_volume=value;//获取当前音量 |
1291 | 1291 | ||
1292 | - //v3s自设系统 10T要提高30初始音量 | ||
1293 | - // if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
1294 | - // { | ||
1295 | - // if (value > 0) | ||
1296 | - // { | ||
1297 | - // value = 30 + value * 10/7; | ||
1298 | - // } | ||
1299 | - // } | 1292 | + //v3s自设系统 要提高10初始音量 |
1293 | + if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
1294 | + { | ||
1295 | + if (value > 0) | ||
1296 | + { | ||
1297 | + value = 20 + value * 10/8; | ||
1298 | + } | ||
1299 | + } | ||
1300 | 1300 | ||
1301 | if(value<=0) | 1301 | if(value<=0) |
1302 | { | 1302 | { |
@@ -1342,15 +1342,14 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume() | @@ -1342,15 +1342,14 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume() | ||
1342 | int value = now_volume; | 1342 | int value = now_volume; |
1343 | printf("TTS音量修改\n"); | 1343 | printf("TTS音量修改\n"); |
1344 | 1344 | ||
1345 | - //v3s自设系统 10T要提高30初始音量 | ||
1346 | - // if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
1347 | - // { | ||
1348 | - // if (value > 0) | ||
1349 | - // { | ||
1350 | - // value = 30 + value * 10/7; | ||
1351 | - // } | ||
1352 | - // } | ||
1353 | - | 1345 | + //v3s自设系统 要提高10初始音量 |
1346 | + if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
1347 | + { | ||
1348 | + if (value > 0) | ||
1349 | + { | ||
1350 | + value = 20 + value * 10/8; | ||
1351 | + } | ||
1352 | + } | ||
1354 | 1353 | ||
1355 | if(value<=0) | 1354 | if(value<=0) |
1356 | { | 1355 | { |
@@ -15,9 +15,8 @@ | @@ -15,9 +15,8 @@ | ||
15 | 15 | ||
16 | T_JZsdkReturnCode Megphone_Attention() | 16 | T_JZsdkReturnCode Megphone_Attention() |
17 | { | 17 | { |
18 | - | ||
19 | //hal加载 | 18 | //hal加载 |
20 | - JZsdk_Hal_Init(); | 19 | + JZsdk_LibInit(JZ_FLAGCODE_OFF); |
21 | 20 | ||
22 | //如果是喊话器设备 | 21 | //如果是喊话器设备 |
23 | #ifdef MEGAPHONE_CONFIG_STATUS_ON | 22 | #ifdef MEGAPHONE_CONFIG_STATUS_ON |
@@ -35,6 +35,7 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -35,6 +35,7 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
35 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o.d" | 35 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o.d" |
36 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" | 36 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" |
37 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" | 37 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" |
38 | + "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.d" | ||
38 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" | 39 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" |
39 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o.d" | 40 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o.d" |
40 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o.d" | 41 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o.d" |
@@ -62,11 +63,12 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -62,11 +63,12 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
62 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o.d" | 63 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o.d" |
63 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" | 64 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" |
64 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" | 65 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" |
65 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o.d" | 66 | + "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o.d" |
66 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" | 67 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" |
67 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o.d" | 68 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o.d" |
68 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" | 69 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" |
69 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" | 70 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" |
71 | + "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o.d" | ||
70 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" | 72 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" |
71 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o.d" | 73 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o.d" |
72 | "/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o.d" | 74 | "/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o.d" |
@@ -77,6 +79,14 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -77,6 +79,14 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
77 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o.d" | 79 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o.d" |
78 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" | 80 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" |
79 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" | 81 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" |
82 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o.d" | ||
83 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o.d" | ||
84 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o.d" | ||
85 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o.d" | ||
86 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o.d" | ||
87 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o.d" | ||
88 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o.d" | ||
89 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o.d" | ||
80 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" | 90 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" |
81 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o.d" | 91 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o.d" |
82 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o.d" | 92 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o.d" |
@@ -99,33 +109,6 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -99,33 +109,6 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
99 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o.d" | 109 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o.d" |
100 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" | 110 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" |
101 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" | 111 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" |
102 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o.d" | ||
103 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o.d" | ||
104 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o.d" | ||
105 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o.d" | ||
106 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o.d" | ||
107 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o.d" | ||
108 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o.d" | ||
109 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o.d" | ||
110 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o.d" | ||
111 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o.d" | ||
112 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o.d" | ||
113 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o.d" | ||
114 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o.d" | ||
115 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o.d" | ||
116 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o.d" | ||
117 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o.d" | ||
118 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o.d" | ||
119 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o.d" | ||
120 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o.d" | ||
121 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o.d" | ||
122 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o.d" | ||
123 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o.d" | ||
124 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o.d" | ||
125 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o.d" | ||
126 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o.d" | ||
127 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o.d" | ||
128 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o.d" | ||
129 | ) | 112 | ) |
130 | 113 | ||
131 | # Targets to which this target links. | 114 | # Targets to which this target links. |
不能预览此文件类型
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | ||
46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -83,5 +85,6 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | @@ -83,5 +85,6 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | ||
83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
88 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ | 89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ |
87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h | 90 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h |
@@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/application/main.c.o: \ | @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/application/main.c.o: \ | ||
50 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 50 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -55,6 +55,8 @@ file(REMOVE_RECURSE | @@ -55,6 +55,8 @@ file(REMOVE_RECURSE | ||
55 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" | 55 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" |
56 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" | 56 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" |
57 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" | 57 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" |
58 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o" | ||
59 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.d" | ||
58 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" | 60 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" |
59 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" | 61 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" |
60 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" | 62 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" |
@@ -109,8 +111,8 @@ file(REMOVE_RECURSE | @@ -109,8 +111,8 @@ file(REMOVE_RECURSE | ||
109 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" | 111 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" |
110 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" | 112 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" |
111 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" | 113 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" |
112 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o" | ||
113 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o.d" | 114 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o" |
115 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o.d" | ||
114 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" | 116 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" |
115 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" | 117 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" |
116 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" | 118 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" |
@@ -119,6 +121,8 @@ file(REMOVE_RECURSE | @@ -119,6 +121,8 @@ file(REMOVE_RECURSE | ||
119 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" | 121 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" |
120 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" | 122 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" |
121 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" | 123 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" |
124 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o" | ||
125 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o.d" | ||
122 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" | 126 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" |
123 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" | 127 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" |
124 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" | 128 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" |
@@ -139,6 +143,22 @@ file(REMOVE_RECURSE | @@ -139,6 +143,22 @@ file(REMOVE_RECURSE | ||
139 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" | 143 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" |
140 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" | 144 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" |
141 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" | 145 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" |
146 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o" | ||
147 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o.d" | ||
148 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o" | ||
149 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o.d" | ||
150 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o" | ||
151 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o.d" | ||
152 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o" | ||
153 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o.d" | ||
154 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o" | ||
155 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o.d" | ||
156 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o" | ||
157 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o.d" | ||
158 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o" | ||
159 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o.d" | ||
160 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o" | ||
161 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o.d" | ||
142 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" | 162 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" |
143 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" | 163 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" |
144 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" | 164 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" |
@@ -183,60 +203,6 @@ file(REMOVE_RECURSE | @@ -183,60 +203,6 @@ file(REMOVE_RECURSE | ||
183 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" | 203 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" |
184 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" | 204 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" |
185 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" | 205 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" |
186 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o" | ||
187 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o.d" | ||
188 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o" | ||
189 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o.d" | ||
190 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o" | ||
191 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o.d" | ||
192 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o" | ||
193 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o.d" | ||
194 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o" | ||
195 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o.d" | ||
196 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o" | ||
197 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o.d" | ||
198 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o" | ||
199 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o.d" | ||
200 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o" | ||
201 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o.d" | ||
202 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o" | ||
203 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o.d" | ||
204 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o" | ||
205 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o.d" | ||
206 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o" | ||
207 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o.d" | ||
208 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o" | ||
209 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o.d" | ||
210 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o" | ||
211 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o.d" | ||
212 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o" | ||
213 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o.d" | ||
214 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o" | ||
215 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o.d" | ||
216 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o" | ||
217 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o.d" | ||
218 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o" | ||
219 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o.d" | ||
220 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o" | ||
221 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o.d" | ||
222 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o" | ||
223 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o.d" | ||
224 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o" | ||
225 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o.d" | ||
226 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o" | ||
227 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o.d" | ||
228 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o" | ||
229 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o.d" | ||
230 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o" | ||
231 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o.d" | ||
232 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o" | ||
233 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o.d" | ||
234 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o" | ||
235 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o.d" | ||
236 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o" | ||
237 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o.d" | ||
238 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o" | ||
239 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o.d" | ||
240 | ) | 206 | ) |
241 | 207 | ||
242 | # Per-language clean rules from dependency scanning. | 208 | # Per-language clean rules from dependency scanning. |
@@ -2,9 +2,9 @@ | @@ -2,9 +2,9 @@ | ||
2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.24 | 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.24 |
3 | 3 | ||
4 | # compile C with /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc | 4 | # compile C with /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc |
5 | -C_DEFINES = -DMACRO_MEGAPHONE_MODULE -DMACRO_WIRINGPI_MODULE | 5 | +C_DEFINES = -DMACRO_AUDIODEAL_MODULE -DMACRO_LIGHTING_MODULE -DMACRO_MEGAPHONE_MODULE |
6 | 6 | ||
7 | -C_INCLUDES = -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Camera -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/COMMONManager -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/TestAPP -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/ImageProcessing -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/SerialManagement -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/include | 7 | +C_INCLUDES = -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Camera -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/COMMONManager -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/TestAPP -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/ImageProcessing -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/SerialManagement -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/include |
8 | 8 | ||
9 | C_FLAGS = -pthread -std=gnu99 -lm -ldl -lstdc++ -D COMPILE_MODE_MODULE | 9 | C_FLAGS = -pthread -std=gnu99 -lm -ldl -lstdc++ -D COMPILE_MODE_MODULE |
10 | 10 |
1 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread -rdynamic CMakeFiles/ATTENTION_APP.dir/application/main.c.o CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o -o ATTENTION_APP -L/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf -Wl,-rpath,/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf -lmsc /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2 | 1 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread -rdynamic CMakeFiles/ATTENTION_APP.dir/application/main.c.o CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o -o ATTENTION_APP -L/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf -Wl,-rpath,/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf -lmsc /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2 |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c. | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c. | ||
46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
52 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
53 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
52 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
53 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Commo | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Commo | ||
44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | ||
53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
57 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | ||
53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
57 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
1 | CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: \ | 1 | CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: \ |
2 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c \ | 2 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c \ |
3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ | 3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ |
4 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | 4 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/pthread.h \ |
5 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ | 5 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ |
6 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \ | 6 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \ |
7 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \ | 7 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \ |
8 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \ | 8 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \ |
9 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \ | 9 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \ |
10 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \ | ||
11 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \ | ||
12 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \ | ||
13 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \ | ||
14 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \ | ||
15 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \ | ||
16 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \ | ||
17 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \ | ||
18 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | ||
19 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ | ||
20 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ | ||
21 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ | ||
22 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/endian.h \ | 10 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/endian.h \ |
23 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/endian.h \ | 11 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/endian.h \ |
24 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap.h \ | 12 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap.h \ |
13 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \ | ||
14 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \ | ||
25 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap-16.h \ | 15 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap-16.h \ |
26 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/types.h \ | ||
27 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \ | ||
28 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/select.h \ | ||
29 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/select.h \ | ||
30 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sigset.h \ | ||
31 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/time.h \ | ||
32 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/sysmacros.h \ | ||
33 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | ||
34 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | ||
35 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | ||
36 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/pthread.h \ | ||
37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \ | 16 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \ |
17 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \ | ||
18 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \ | ||
38 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \ | 19 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \ |
20 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/time.h \ | ||
39 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ | 21 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ |
22 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | ||
40 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \ | 23 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \ |
41 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | ||
42 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \ | 24 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \ |
43 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \ | 25 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \ |
44 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 26 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
@@ -48,8 +30,28 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | @@ -48,8 +30,28 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | ||
48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | 30 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ |
49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 31 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
50 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 32 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
33 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | ||
34 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ | ||
35 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ | ||
36 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ | ||
37 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/types.h \ | ||
38 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/select.h \ | ||
39 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/select.h \ | ||
40 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sigset.h \ | ||
41 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/sysmacros.h \ | ||
42 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | ||
43 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | ||
44 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | ||
45 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \ | ||
46 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \ | ||
47 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \ | ||
48 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \ | ||
49 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \ | ||
50 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | ||
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -76,89 +78,41 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | @@ -76,89 +78,41 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | ||
76 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ | 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ |
77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ | 79 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ |
78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ |
79 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ | ||
80 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ | ||
81 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.h \ | 81 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.h \ |
82 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h \ | 82 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h \ |
83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ |
84 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ParamterParsing.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ParamterParsing.h \ |
85 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ | ||
86 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ | ||
87 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_Hal.h \ | ||
85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/ircut.h \ | 88 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/ircut.h \ |
86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./ircutParams.h \ | 89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./ircutParams.h \ |
87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./Sysfs_gpio/Sysfs_gpio.h \ | 90 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./Sysfs_gpio/Sysfs_gpio.h \ |
88 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal/Gimbal.h \ | ||
89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/Psdk_UI_io.h \ | 91 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/Psdk_UI_io.h \ |
90 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting/Lighting_InAndOut.h \ | ||
91 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_network/JZsdk_network.h \ | ||
92 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.h \ | 92 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.h \ |
93 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc.h \ | ||
94 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./Camera/Camera.h \ | ||
95 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc_Param.h \ | ||
96 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_FrameCatch/Cam_FrameCatch.h \ | ||
97 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_CameraParameterSetting.h \ | ||
98 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_Record.h \ | ||
99 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_Zoom/Cam_Zoom.h \ | ||
100 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./VideoMgmt/VideoMgmt.h \ | ||
101 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./VideoMgmt/./VideoMgmt_Parm.h \ | ||
102 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./ImageProc/PseudoColor/PseudoColor.h \ | ||
103 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./IRC_funtion/IRC_funtion.h \ | ||
104 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/IRC_funtion/IRC_Param.h \ | ||
105 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_Widget.h \ | 93 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_Widget.h \ |
106 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.h \ | 94 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.h \ |
107 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceConfig/DeviceConfig.h \ | ||
108 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceConfig/JZC1/JZC1.h \ | 95 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/DeviceSample.h \ |
96 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.h \ | ||
97 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1T/JZ_h1t.h \ | ||
98 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H10_series/JZ_H10/JZ_h10.h \ | ||
99 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H10_series/JZ_H10T/JZ_h10t.h \ | ||
100 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H150S_H150T/JZ_h150s_h150t.h \ | ||
101 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.h \ | ||
102 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3S/JZ_u3s.h \ | ||
103 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3D/JZ_u3d.h \ | ||
104 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U30/JZ_u30.h \ | ||
105 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZC1/JZC1.h \ | ||
106 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/TF_A1/TF_a1.h \ | ||
109 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/CommonMod.h \ | 107 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/CommonMod.h \ |
110 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PowerManger/PowerManger.h \ | 108 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PowerManger/PowerManger.h \ |
111 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/Upgrade/Upgrade.h \ | 109 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/Upgrade/Upgrade.h \ |
112 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PresetTask/PresetTask.h \ | 110 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PresetTask/PresetTask.h \ |
113 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_Hal.h \ | ||
114 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceInfo.h \ | 111 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceInfo.h \ |
115 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 112 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
116 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 113 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
117 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 114 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
118 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 115 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
119 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/AudioDeal/AudioDeal.h \ | ||
120 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h \ | ||
121 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/version.h \ | ||
122 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/macros.h \ | ||
123 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/avconfig.h \ | ||
124 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/attributes.h \ | ||
125 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/frame.h \ | ||
126 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/avutil.h \ | ||
127 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/common.h \ | ||
128 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \ | ||
129 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \ | ||
130 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \ | ||
131 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \ | ||
132 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \ | ||
133 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \ | ||
134 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/inttypes.h \ | ||
135 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include-fixed/limits.h \ | ||
136 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include-fixed/syslimits.h \ | ||
137 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/limits.h \ | ||
138 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix1_lim.h \ | ||
139 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/local_lim.h \ | ||
140 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \ | ||
141 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix2_lim.h \ | ||
142 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/math.h \ | ||
143 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/math-vector.h \ | ||
144 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/libm-simd-decl-stubs.h \ | ||
145 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_val.h \ | ||
146 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_valf.h \ | ||
147 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_vall.h \ | ||
148 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/inf.h \ | ||
149 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/nan.h \ | ||
150 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathdef.h \ | ||
151 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathcalls.h \ | ||
152 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/mem.h \ | ||
153 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/error.h \ | ||
154 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/rational.h \ | ||
155 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/mathematics.h \ | ||
156 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/intfloat.h \ | ||
157 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/log.h \ | ||
158 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/pixfmt.h \ | ||
159 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/buffer.h \ | ||
160 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h \ | ||
161 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/dict.h \ | ||
162 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/samplefmt.h \ | 116 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ |
163 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ | 117 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ |
164 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h | 118 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h |
@@ -52,6 +52,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterPar | @@ -52,6 +52,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterPar | ||
52 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 52 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
55 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_ | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_ | ||
48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -35,9 +35,11 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -35,9 +35,11 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | 35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ |
36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | 36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ |
37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
38 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/termios.h \ | ||
39 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/termios.h \ | ||
40 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | 38 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/unistd.h \ |
39 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix_opt.h \ | ||
40 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/environments.h \ | ||
41 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \ | ||
42 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \ | ||
41 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/socket.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/socket.h \ |
42 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/uio.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/uio.h \ |
43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/uio.h \ | 45 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/uio.h \ |
@@ -54,6 +56,9 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -54,6 +56,9 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
54 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 56 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
55 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/in.h \ | 57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/in.h \ |
56 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/arpa/inet.h \ | 58 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/arpa/inet.h \ |
59 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/termios.h \ | ||
60 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/termios.h \ | ||
61 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | ||
57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ |
58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ | 63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ |
59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ | 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ |
@@ -65,6 +70,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -65,6 +70,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
65 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 70 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 71 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 72 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
73 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
74 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 75 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
69 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 76 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
70 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -93,4 +100,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -93,4 +100,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
93 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ | 100 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ |
94 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ | 101 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ |
95 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ | 102 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ |
96 | - /mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/./JZsdk_network.h | 103 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/./JZsdk_network.h \ |
104 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/../Hal_Recv/HalRecv.h \ | ||
105 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.h |
@@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZs | @@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZs | ||
63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
66 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
67 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 69 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 70 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk | ||
48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ | 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pc | @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pc | ||
50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -162,6 +162,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | @@ -162,6 +162,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | ||
162 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 162 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
163 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 163 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
164 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 164 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
165 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
166 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
165 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 167 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
166 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 168 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
167 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 169 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -55,6 +55,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | @@ -55,6 +55,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | ||
55 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 55 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
58 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
59 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | @@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | ||
130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
133 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
134 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 136 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 137 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | ||
127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
130 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
131 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
130 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | ||
127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
130 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
131 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
130 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/ | @@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/ | ||
130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
133 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
134 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 136 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 137 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -56,6 +56,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseRe | @@ -56,6 +56,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseRe | ||
56 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 56 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
59 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
60 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resampl | @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resampl | ||
127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
130 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
131 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
130 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | ||
46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -81,4 +83,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | @@ -81,4 +83,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | ||
81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
84 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h | 86 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
87 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
88 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_Hal.h |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | ||
46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Hardwa | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Hardwa | ||
46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | ||
44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | ||
46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | ||
44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -60,6 +60,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o | @@ -60,6 +60,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o | ||
60 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | 60 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ |
61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
63 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
64 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | ||
46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -83,45 +85,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | @@ -83,45 +85,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | ||
83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ |
84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ | 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ |
85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart.h \ | 87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart.h \ |
86 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/H3_ircut/H3_ircut.h \ | ||
87 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/wiringPi.h \ | ||
88 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/boardtype_friendlyelec.h \ | ||
89 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/unistd.h \ | ||
90 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix_opt.h \ | ||
91 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/environments.h \ | ||
92 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \ | ||
93 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \ | ||
94 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/stat.h \ | ||
95 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \ | ||
96 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ioctl.h \ | ||
97 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctls.h \ | ||
98 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctls.h \ | ||
99 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctls.h \ | ||
100 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/ioctl.h \ | ||
101 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctl.h \ | ||
102 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctl.h \ | ||
103 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctl-types.h \ | ||
104 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | ||
105 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/fcntl.h \ | ||
106 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl.h \ | ||
107 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl-linux.h \ | ||
108 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/fs.h \ | ||
109 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \ | ||
110 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/types.h \ | ||
111 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/types.h \ | ||
112 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/types.h \ | ||
113 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/int-ll64.h \ | ||
114 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/bitsperlong.h \ | ||
115 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/bitsperlong.h \ | ||
116 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/posix_types.h \ | ||
117 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/stddef.h \ | ||
118 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/posix_types.h \ | ||
119 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/posix_types.h \ | ||
120 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \ | ||
121 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \ | ||
122 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \ | ||
123 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \ | ||
124 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \ | ||
125 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \ | ||
126 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | ||
127 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h | 88 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/H3_ircut/H3_ircut.h |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Mot | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Mot | ||
46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Spe | @@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Spe | ||
63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
66 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
67 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 69 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 70 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | ||
44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -76,45 +78,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | @@ -76,45 +78,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | ||
76 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ | 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ |
77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ | 79 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ |
78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ |
79 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ | ||
80 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/wiringPi.h \ | ||
81 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/boardtype_friendlyelec.h \ | ||
82 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/unistd.h \ | ||
83 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix_opt.h \ | ||
84 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/environments.h \ | ||
85 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \ | ||
86 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \ | ||
87 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/stat.h \ | ||
88 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \ | ||
89 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ioctl.h \ | ||
90 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctls.h \ | ||
91 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctls.h \ | ||
92 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctls.h \ | ||
93 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/ioctl.h \ | ||
94 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctl.h \ | ||
95 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctl.h \ | ||
96 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctl-types.h \ | ||
97 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | ||
98 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/fcntl.h \ | ||
99 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl.h \ | ||
100 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl-linux.h \ | ||
101 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/fs.h \ | ||
102 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \ | ||
103 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/types.h \ | ||
104 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/types.h \ | ||
105 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/types.h \ | ||
106 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/int-ll64.h \ | ||
107 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/bitsperlong.h \ | ||
108 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/bitsperlong.h \ | ||
109 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/posix_types.h \ | ||
110 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/stddef.h \ | ||
111 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/posix_types.h \ | ||
112 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/posix_types.h \ | ||
113 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \ | ||
114 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \ | ||
115 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \ | ||
116 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \ | ||
117 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \ | ||
118 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \ | ||
119 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | ||
120 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h | 81 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h |
@@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/ | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/ | ||
48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V | ||
44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ |
45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o: | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o: | ||
46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | ||
46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -80,4 +82,5 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | @@ -80,4 +82,5 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | ||
80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
83 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h | 85 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
86 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h |
@@ -79,6 +79,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTemp | @@ -79,6 +79,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTemp | ||
79 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 79 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
82 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
83 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | ||
50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
@@ -136,6 +138,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | @@ -136,6 +138,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | ||
136 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 138 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
137 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 139 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
138 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 140 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
141 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
139 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ | 142 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ |
140 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ | 143 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ |
141 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ | 144 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ |
-
请 注册 或 登录 后发表评论