正在显示
100 个修改的文件
包含
240 行增加
和
1618 行删除
@@ -27,6 +27,7 @@ project_build/GDU_普宙PSDK | @@ -27,6 +27,7 @@ project_build/GDU_普宙PSDK | ||
27 | # !project_build/DJI_大疆PSDK/samples/sample_c/platform/linux/all/CMakeLists.txt | 27 | # !project_build/DJI_大疆PSDK/samples/sample_c/platform/linux/all/CMakeLists.txt |
28 | 28 | ||
29 | project_build/Payload-SDK-release-v3.11.0/* | 29 | project_build/Payload-SDK-release-v3.11.0/* |
30 | +project_build/特殊固件 | ||
30 | 31 | ||
31 | 32 | ||
32 | # project_build/Attention_提示程序 | 33 | # project_build/Attention_提示程序 |
1 | # 编译链的配置 | 1 | # 编译链的配置 |
2 | 2 | ||
3 | #1、编译链与设备类型的选择 | 3 | #1、编译链与设备类型的选择 |
4 | -set(DEVICE_NAME JZ_H150G) | 4 | +set(DEVICE_NAME JZ_H1E) |
5 | #上一行为禁止修改行 | 5 | #上一行为禁止修改行 |
6 | 6 | ||
7 | message("**************************JZSDK构建编译开始***************************\n") | 7 | message("**************************JZSDK构建编译开始***************************\n") |
@@ -372,6 +372,10 @@ elseif("${DEVICE_NAME}" STREQUAL "JZ_H150G") | @@ -372,6 +372,10 @@ elseif("${DEVICE_NAME}" STREQUAL "JZ_H150G") | ||
372 | # 添加FFMPEG及其附属模块 | 372 | # 添加FFMPEG及其附属模块 |
373 | set(FFMPEG_MODULE VERSION_SWITCH_ON) | 373 | set(FFMPEG_MODULE VERSION_SWITCH_ON) |
374 | 374 | ||
375 | + #设备独立配置源文件 | ||
376 | + file(GLOB_RECURSE DEVICE_CONFOG_SRC ${ROOT_DIRS}JZsdk_Config/DeviceSample/JZ_H150G/*.c) | ||
377 | + list(APPEND ALL_SRC_FILES ${DEVICE_CONFOG_SRC}) | ||
378 | + | ||
375 | message("JZ_H150G基础配置完毕\n") | 379 | message("JZ_H150G基础配置完毕\n") |
376 | endif() | 380 | endif() |
377 | 381 |
@@ -320,6 +320,11 @@ static T_JZsdkReturnCode DeviceSample_init(int mode) | @@ -320,6 +320,11 @@ static T_JZsdkReturnCode DeviceSample_init(int mode) | ||
320 | #if DEVICE_VERSION == JZ_ST | 320 | #if DEVICE_VERSION == JZ_ST |
321 | JZ_ST_Init(mode); | 321 | JZ_ST_Init(mode); |
322 | #endif | 322 | #endif |
323 | + | ||
324 | + //150G加载 | ||
325 | + #if DEVICE_VERSION == JZ_H150G | ||
326 | + JZ_h150g_init(mode); | ||
327 | + #endif | ||
323 | } | 328 | } |
324 | 329 | ||
325 | 330 |
@@ -231,7 +231,7 @@ extern "C" { | @@ -231,7 +231,7 @@ extern "C" { | ||
231 | #elif DEVICE_VERSION == JZ_H150G | 231 | #elif DEVICE_VERSION == JZ_H150G |
232 | 232 | ||
233 | #define UART_DEV1_NUM "/dev/ttyS1" | 233 | #define UART_DEV1_NUM "/dev/ttyS1" |
234 | - #define UART_DEV1_BITRATE (115200) | 234 | + #define UART_DEV1_BITRATE (921600) |
235 | 235 | ||
236 | #define UART_DEV2_NUM NULL | 236 | #define UART_DEV2_NUM NULL |
237 | #define UART_DEV2_BITRATE (0) | 237 | #define UART_DEV2_BITRATE (0) |
@@ -19,6 +19,7 @@ | @@ -19,6 +19,7 @@ | ||
19 | #include "DeviceSample/JZ_H10_series/JZ_H10T/JZ_h10t.h" | 19 | #include "DeviceSample/JZ_H10_series/JZ_H10T/JZ_h10t.h" |
20 | 20 | ||
21 | #include "DeviceSample/JZ_H150S_H150T/JZ_h150s_h150t.h" | 21 | #include "DeviceSample/JZ_H150S_H150T/JZ_h150s_h150t.h" |
22 | +#include "DeviceSample/JZ_H150G/JZ_h150g.h" | ||
22 | 23 | ||
23 | #include "DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.h" | 24 | #include "DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.h" |
24 | #include "DeviceSample/JZ_U3_series/JZ_U3S/JZ_u3s.h" | 25 | #include "DeviceSample/JZ_U3_series/JZ_U3S/JZ_u3s.h" |
@@ -28,6 +29,7 @@ | @@ -28,6 +29,7 @@ | ||
28 | #include "DeviceSample/JZC1/JZC1.h" | 29 | #include "DeviceSample/JZC1/JZC1.h" |
29 | #include "DeviceSample/JZ_ST/JZ_ST.h" | 30 | #include "DeviceSample/JZ_ST/JZ_ST.h" |
30 | 31 | ||
32 | + | ||
31 | #include "TF_A1/TF_a1.h" | 33 | #include "TF_A1/TF_a1.h" |
32 | 34 | ||
33 | /* Includes ------------------------------------------------------------------*/ | 35 | /* Includes ------------------------------------------------------------------*/ |
@@ -17,7 +17,7 @@ | @@ -17,7 +17,7 @@ | ||
17 | T_JZsdkReturnCode JZ_h150g_init(int mode) | 17 | T_JZsdkReturnCode JZ_h150g_init(int mode) |
18 | { | 18 | { |
19 | //音频库初始化 | 19 | //音频库初始化 |
20 | - AudioDeal_Init(); | 20 | + //AudioDeal_Init(); |
21 | 21 | ||
22 | int value[5] = {0}; | 22 | int value[5] = {0}; |
23 | if (mode == APP_UART) | 23 | if (mode == APP_UART) |
@@ -28,5 +28,5 @@ T_JZsdkReturnCode JZ_h150g_init(int mode) | @@ -28,5 +28,5 @@ T_JZsdkReturnCode JZ_h150g_init(int mode) | ||
28 | } | 28 | } |
29 | 29 | ||
30 | //喊话器初始化 | 30 | //喊话器初始化 |
31 | - Megaphone_Init(); | 31 | + //Megaphone_Init(); |
32 | } | 32 | } |
@@ -7,23 +7,23 @@ | @@ -7,23 +7,23 @@ | ||
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_H150G | 10 | +#define DEVICE_VERSION JZ_H1E |
11 | 11 | ||
12 | //禁止修改行 选择是串口程序 还是 psdk程序 | 12 | //禁止修改行 选择是串口程序 还是 psdk程序 |
13 | -#define APP_VERSION APP_UART | 13 | +#define APP_VERSION APP_PSDK |
14 | 14 | ||
15 | //禁止修改行 板子型号 | 15 | //禁止修改行 板子型号 |
16 | #define PLATFORM_VERSION PLATFORM_V3S | 16 | #define PLATFORM_VERSION PLATFORM_V3S |
17 | 17 | ||
18 | //禁止修改行 串口连接程序的软件版本号 | 18 | //禁止修改行 串口连接程序的软件版本号 |
19 | #define MAJOR_VERSION_TEN_POSITION 0 | 19 | #define MAJOR_VERSION_TEN_POSITION 0 |
20 | -#define MAJOR_VERSION_ONE_POSITION 0 | 20 | +#define MAJOR_VERSION_ONE_POSITION 1 |
21 | #define MINOR_VERSION_TEN_POSITION 0 | 21 | #define MINOR_VERSION_TEN_POSITION 0 |
22 | -#define MINOR_VERSION_ONE_POSITION 0 | ||
23 | -#define MODIFY_VERSION_TEN_POSITION 0 | ||
24 | -#define MODIFY_VERSION_ONE_POSITION 2 | ||
25 | -#define DEBUG_VERSION_TEN_POSITION 2 | ||
26 | -#define DEBUG_VERSION_ONE_POSITION 1 | 22 | +#define MINOR_VERSION_ONE_POSITION 3 |
23 | +#define MODIFY_VERSION_TEN_POSITION 1 | ||
24 | +#define MODIFY_VERSION_ONE_POSITION 1 | ||
25 | +#define DEBUG_VERSION_TEN_POSITION 0 | ||
26 | +#define DEBUG_VERSION_ONE_POSITION 5 | ||
27 | 27 | ||
28 | 28 | ||
29 | 29 |
@@ -25,6 +25,7 @@ | @@ -25,6 +25,7 @@ | ||
25 | #include "Megaphone/opus/Megaphone_Opus.h" | 25 | #include "Megaphone/opus/Megaphone_Opus.h" |
26 | #include "Megaphone/PcmAudio/PcmAudioFile.h" | 26 | #include "Megaphone/PcmAudio/PcmAudioFile.h" |
27 | #include "Megaphone/Megaphone.h" | 27 | #include "Megaphone/Megaphone.h" |
28 | +#include "Megaphone/Volume/volume.h" | ||
28 | #include "CommonMod/CommonMod.h" | 29 | #include "CommonMod/CommonMod.h" |
29 | 30 | ||
30 | #define PRESET_TASK_TTS_PATH "/root/Preset/tts.txt" | 31 | #define PRESET_TASK_TTS_PATH "/root/Preset/tts.txt" |
@@ -24,7 +24,7 @@ static struct AudioMange_Node *g_AudioListtail = NULL; // 用于跟踪链表的 | @@ -24,7 +24,7 @@ static struct AudioMange_Node *g_AudioListtail = NULL; // 用于跟踪链表的 | ||
24 | static int g_AudioList_Num = 0; //记录链表中一共有几首歌 | 24 | static int g_AudioList_Num = 0; //记录链表中一共有几首歌 |
25 | static int g_AudioList_CurrentNum = 0; //记录播放当前第几首歌 | 25 | static int g_AudioList_CurrentNum = 0; //记录播放当前第几首歌 |
26 | 26 | ||
27 | -static g_AudioList_flush_Flag = JZ_FLAGCODE_OFF; //刷新标志位 | 27 | +static int g_AudioList_flush_Flag = JZ_FLAGCODE_OFF; //刷新标志位 |
28 | 28 | ||
29 | //文件播放线程 | 29 | //文件播放线程 |
30 | static void *FilePlay_data_pthread(void *arg) | 30 | static void *FilePlay_data_pthread(void *arg) |
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include <string.h> | 2 | #include <string.h> |
3 | +#include <ctype.h> | ||
4 | +#include <stdlib.h> | ||
3 | #include <pthread.h> | 5 | #include <pthread.h> |
4 | 6 | ||
5 | #include "./cnTTS.h" | 7 | #include "./cnTTS.h" |
@@ -7,6 +9,7 @@ | @@ -7,6 +9,7 @@ | ||
7 | #include "../../Megaphone.h" | 9 | #include "../../Megaphone.h" |
8 | 10 | ||
9 | #include "AudioDeal/AudioDeal.h" | 11 | #include "AudioDeal/AudioDeal.h" |
12 | +#include "Megaphone/Volume/volume.h" | ||
10 | 13 | ||
11 | #include "JZsdkLib.h" | 14 | #include "JZsdkLib.h" |
12 | 15 |
不能预览此文件类型
1 | -# This is the CMakeCache file. | ||
2 | -# For build in directory: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build | ||
3 | -# It was generated by CMake: /usr/bin/cmake | ||
4 | -# You can edit this file to change values found and used by cmake. | ||
5 | -# If you do not want to change any of the values, simply exit the editor. | ||
6 | -# If you do want to change a value, simply edit, save, and exit the editor. | ||
7 | -# The syntax for the file is as follows: | ||
8 | -# KEY:TYPE=VALUE | ||
9 | -# KEY is the name of a variable in the cache. | ||
10 | -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. | ||
11 | -# VALUE is the current value for the KEY. | ||
12 | - | ||
13 | -######################## | ||
14 | -# EXTERNAL cache entries | ||
15 | -######################## | ||
16 | - | ||
17 | -//Value Computed by CMake | ||
18 | -ATTENTION_APP_BINARY_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build | ||
19 | - | ||
20 | -//Value Computed by CMake | ||
21 | -ATTENTION_APP_SOURCE_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序 | ||
22 | - | ||
23 | -//Path to a program. | ||
24 | -CMAKE_AR:FILEPATH=/usr/bin/ar | ||
25 | - | ||
26 | -//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or | ||
27 | -// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. | ||
28 | -CMAKE_BUILD_TYPE:STRING= | ||
29 | - | ||
30 | -//Enable/Disable color output during build. | ||
31 | -CMAKE_COLOR_MAKEFILE:BOOL=ON | ||
32 | - | ||
33 | -//CXX compiler | ||
34 | -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ | ||
35 | - | ||
36 | -//Flags used by the compiler during all build types. | ||
37 | -CMAKE_CXX_FLAGS:STRING= | ||
38 | - | ||
39 | -//Flags used by the compiler during debug builds. | ||
40 | -CMAKE_CXX_FLAGS_DEBUG:STRING=-g | ||
41 | - | ||
42 | -//Flags used by the compiler during release builds for minimum | ||
43 | -// size. | ||
44 | -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG | ||
45 | - | ||
46 | -//Flags used by the compiler during release builds. | ||
47 | -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG | ||
48 | - | ||
49 | -//Flags used by the compiler during release builds with debug info. | ||
50 | -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG | ||
51 | - | ||
52 | -//C compiler | ||
53 | -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc | ||
54 | - | ||
55 | -//Flags used by the compiler during all build types. | ||
56 | -CMAKE_C_FLAGS:STRING= | ||
57 | - | ||
58 | -//Flags used by the compiler during debug builds. | ||
59 | -CMAKE_C_FLAGS_DEBUG:STRING=-g | ||
60 | - | ||
61 | -//Flags used by the compiler during release builds for minimum | ||
62 | -// size. | ||
63 | -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG | ||
64 | - | ||
65 | -//Flags used by the compiler during release builds. | ||
66 | -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG | ||
67 | - | ||
68 | -//Flags used by the compiler during release builds with debug info. | ||
69 | -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG | ||
70 | - | ||
71 | -//Flags used by the linker. | ||
72 | -CMAKE_EXE_LINKER_FLAGS:STRING= | ||
73 | - | ||
74 | -//Flags used by the linker during debug builds. | ||
75 | -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= | ||
76 | - | ||
77 | -//Flags used by the linker during release minsize builds. | ||
78 | -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= | ||
79 | - | ||
80 | -//Flags used by the linker during release builds. | ||
81 | -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= | ||
82 | - | ||
83 | -//Flags used by the linker during Release with Debug Info builds. | ||
84 | -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= | ||
85 | - | ||
86 | -//Enable/Disable output of compile commands during generation. | ||
87 | -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF | ||
88 | - | ||
89 | -//Install path prefix, prepended onto install directories. | ||
90 | -CMAKE_INSTALL_PREFIX:PATH=/usr/local | ||
91 | - | ||
92 | -//Path to a program. | ||
93 | -CMAKE_LINKER:FILEPATH=/usr/bin/ld | ||
94 | - | ||
95 | -//Path to a program. | ||
96 | -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make | ||
97 | - | ||
98 | -//Flags used by the linker during the creation of modules. | ||
99 | -CMAKE_MODULE_LINKER_FLAGS:STRING= | ||
100 | - | ||
101 | -//Flags used by the linker during debug builds. | ||
102 | -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= | ||
103 | - | ||
104 | -//Flags used by the linker during release minsize builds. | ||
105 | -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= | ||
106 | - | ||
107 | -//Flags used by the linker during release builds. | ||
108 | -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= | ||
109 | - | ||
110 | -//Flags used by the linker during Release with Debug Info builds. | ||
111 | -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= | ||
112 | - | ||
113 | -//Path to a program. | ||
114 | -CMAKE_NM:FILEPATH=/usr/bin/nm | ||
115 | - | ||
116 | -//Path to a program. | ||
117 | -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy | ||
118 | - | ||
119 | -//Path to a program. | ||
120 | -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump | ||
121 | - | ||
122 | -//Value Computed by CMake | ||
123 | -CMAKE_PROJECT_NAME:STATIC=ATTENTION_APP | ||
124 | - | ||
125 | -//Path to a program. | ||
126 | -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib | ||
127 | - | ||
128 | -//Flags used by the linker during the creation of dll's. | ||
129 | -CMAKE_SHARED_LINKER_FLAGS:STRING= | ||
130 | - | ||
131 | -//Flags used by the linker during debug builds. | ||
132 | -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= | ||
133 | - | ||
134 | -//Flags used by the linker during release minsize builds. | ||
135 | -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= | ||
136 | - | ||
137 | -//Flags used by the linker during release builds. | ||
138 | -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= | ||
139 | - | ||
140 | -//Flags used by the linker during Release with Debug Info builds. | ||
141 | -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= | ||
142 | - | ||
143 | -//If set, runtime paths are not added when installing shared libraries, | ||
144 | -// but are added when building. | ||
145 | -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO | ||
146 | - | ||
147 | -//If set, runtime paths are not added when using shared libraries. | ||
148 | -CMAKE_SKIP_RPATH:BOOL=NO | ||
149 | - | ||
150 | -//Flags used by the linker during the creation of static libraries. | ||
151 | -CMAKE_STATIC_LINKER_FLAGS:STRING= | ||
152 | - | ||
153 | -//Flags used by the linker during debug builds. | ||
154 | -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= | ||
155 | - | ||
156 | -//Flags used by the linker during release minsize builds. | ||
157 | -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= | ||
158 | - | ||
159 | -//Flags used by the linker during release builds. | ||
160 | -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= | ||
161 | - | ||
162 | -//Flags used by the linker during Release with Debug Info builds. | ||
163 | -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= | ||
164 | - | ||
165 | -//Path to a program. | ||
166 | -CMAKE_STRIP:FILEPATH=/usr/bin/strip | ||
167 | - | ||
168 | -//If this value is on, makefiles will be generated without the | ||
169 | -// .SILENT directive, and all commands will be echoed to the console | ||
170 | -// during the make. This is useful for debugging only. With Visual | ||
171 | -// Studio IDE projects all commands are done without /nologo. | ||
172 | -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE | ||
173 | - | ||
174 | - | ||
175 | -######################## | ||
176 | -# INTERNAL cache entries | ||
177 | -######################## | ||
178 | - | ||
179 | -//ADVANCED property for variable: CMAKE_AR | ||
180 | -CMAKE_AR-ADVANCED:INTERNAL=1 | ||
181 | -//This is the directory where this CMakeCache.txt was created | ||
182 | -CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build | ||
183 | -//Major version of cmake used to create the current loaded cache | ||
184 | -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 | ||
185 | -//Minor version of cmake used to create the current loaded cache | ||
186 | -CMAKE_CACHE_MINOR_VERSION:INTERNAL=5 | ||
187 | -//Patch version of cmake used to create the current loaded cache | ||
188 | -CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 | ||
189 | -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE | ||
190 | -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 | ||
191 | -//Path to CMake executable. | ||
192 | -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake | ||
193 | -//Path to cpack program executable. | ||
194 | -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack | ||
195 | -//Path to ctest program executable. | ||
196 | -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest | ||
197 | -//ADVANCED property for variable: CMAKE_CXX_COMPILER | ||
198 | -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 | ||
199 | -//ADVANCED property for variable: CMAKE_CXX_FLAGS | ||
200 | -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 | ||
201 | -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG | ||
202 | -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
203 | -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL | ||
204 | -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
205 | -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE | ||
206 | -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
207 | -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO | ||
208 | -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
209 | -//ADVANCED property for variable: CMAKE_C_COMPILER | ||
210 | -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 | ||
211 | -//ADVANCED property for variable: CMAKE_C_FLAGS | ||
212 | -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 | ||
213 | -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG | ||
214 | -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
215 | -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL | ||
216 | -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
217 | -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE | ||
218 | -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
219 | -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO | ||
220 | -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
221 | -//Executable file format | ||
222 | -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF | ||
223 | -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS | ||
224 | -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
225 | -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG | ||
226 | -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
227 | -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL | ||
228 | -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
229 | -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE | ||
230 | -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
231 | -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO | ||
232 | -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
233 | -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS | ||
234 | -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 | ||
235 | -//Name of external makefile project generator. | ||
236 | -CMAKE_EXTRA_GENERATOR:INTERNAL= | ||
237 | -//Name of generator. | ||
238 | -CMAKE_GENERATOR:INTERNAL=Unix Makefiles | ||
239 | -//Name of generator platform. | ||
240 | -CMAKE_GENERATOR_PLATFORM:INTERNAL= | ||
241 | -//Name of generator toolset. | ||
242 | -CMAKE_GENERATOR_TOOLSET:INTERNAL= | ||
243 | -//Source directory with the top level CMakeLists.txt file for this | ||
244 | -// project | ||
245 | -CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序 | ||
246 | -//Install .so files without execute permission. | ||
247 | -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 | ||
248 | -//ADVANCED property for variable: CMAKE_LINKER | ||
249 | -CMAKE_LINKER-ADVANCED:INTERNAL=1 | ||
250 | -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM | ||
251 | -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 | ||
252 | -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS | ||
253 | -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
254 | -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG | ||
255 | -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
256 | -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL | ||
257 | -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
258 | -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE | ||
259 | -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
260 | -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO | ||
261 | -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
262 | -//ADVANCED property for variable: CMAKE_NM | ||
263 | -CMAKE_NM-ADVANCED:INTERNAL=1 | ||
264 | -//number of local generators | ||
265 | -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 | ||
266 | -//ADVANCED property for variable: CMAKE_OBJCOPY | ||
267 | -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 | ||
268 | -//ADVANCED property for variable: CMAKE_OBJDUMP | ||
269 | -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 | ||
270 | -//ADVANCED property for variable: CMAKE_RANLIB | ||
271 | -CMAKE_RANLIB-ADVANCED:INTERNAL=1 | ||
272 | -//Path to CMake installation. | ||
273 | -CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.5 | ||
274 | -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS | ||
275 | -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
276 | -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG | ||
277 | -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
278 | -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL | ||
279 | -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
280 | -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE | ||
281 | -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
282 | -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO | ||
283 | -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
284 | -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH | ||
285 | -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 | ||
286 | -//ADVANCED property for variable: CMAKE_SKIP_RPATH | ||
287 | -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 | ||
288 | -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS | ||
289 | -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
290 | -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG | ||
291 | -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
292 | -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL | ||
293 | -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
294 | -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE | ||
295 | -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
296 | -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO | ||
297 | -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
298 | -//ADVANCED property for variable: CMAKE_STRIP | ||
299 | -CMAKE_STRIP-ADVANCED:INTERNAL=1 | ||
300 | -//uname command | ||
301 | -CMAKE_UNAME:INTERNAL=/bin/uname | ||
302 | -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE | ||
303 | -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 | ||
304 | - |
1 | -# The set of languages for which implicit dependencies are needed: | ||
2 | -set(CMAKE_DEPENDS_LANGUAGES | ||
3 | - "C" | ||
4 | - ) | ||
5 | -# The set of files for implicit dependencies of each language: | ||
6 | -set(CMAKE_DEPENDS_CHECK_C | ||
7 | - "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/application/Megaphone_Attention.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o" | ||
8 | - "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/application/main.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/application/main.c.o" | ||
9 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o" | ||
10 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o" | ||
11 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o" | ||
12 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c.o" | ||
13 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o" | ||
14 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o" | ||
15 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o" | ||
16 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o" | ||
17 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o" | ||
18 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o" | ||
19 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o" | ||
20 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger_Init.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger_Init.c.o" | ||
21 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_monitor.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_monitor.c.o" | ||
22 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o" | ||
23 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o" | ||
24 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c.o" | ||
25 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c.o" | ||
26 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c.o" | ||
27 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c.o" | ||
28 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c.o" | ||
29 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c.o" | ||
30 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c.o" | ||
31 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o" | ||
32 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o" | ||
33 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" | ||
34 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" | ||
35 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" | ||
36 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" | ||
37 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" | ||
38 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" | ||
39 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c.o" | ||
40 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c.o" | ||
41 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c.o" | ||
42 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c.o" | ||
43 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o" | ||
44 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o" | ||
45 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c.o" | ||
46 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o" | ||
47 | - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o" | ||
48 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o" | ||
49 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o" | ||
50 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o" | ||
51 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o" | ||
52 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o" | ||
53 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o" | ||
54 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o" | ||
55 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c.o" | ||
56 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o" | ||
57 | - "/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o" | ||
58 | - "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c.o" | ||
59 | - "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c.o" | ||
60 | - "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o" | ||
61 | - "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o" | ||
62 | - "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" | ||
63 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o" | ||
64 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" | ||
65 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" | ||
66 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" | ||
67 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/LanguageInfo/LanguageInfo.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/LanguageInfo/LanguageInfo.c.o" | ||
68 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" | ||
69 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o" | ||
70 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" | ||
71 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" | ||
72 | - "/mnt/hgfs/share/JZSDK_Linux/Module/ExtensionAPI/JZsdk_ExpansionApi.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/ExtensionAPI/JZsdk_ExpansionApi.c.o" | ||
73 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o" | ||
74 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" | ||
75 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" | ||
76 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" | ||
77 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" | ||
78 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" | ||
79 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" | ||
80 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o" | ||
81 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c.o" | ||
82 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c.o" | ||
83 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o" | ||
84 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c.o" | ||
85 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c.o" | ||
86 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o" | ||
87 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c.o" | ||
88 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c.o" | ||
89 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c.o" | ||
90 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PowerSimulation/Meg_PowerSimulation.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PowerSimulation/Meg_PowerSimulation.c.o" | ||
91 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o" | ||
92 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o" | ||
93 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o" | ||
94 | - "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o" | ||
95 | - "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o" | ||
96 | - "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o" | ||
97 | - "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" | ||
98 | - "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" | ||
99 | - "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" | ||
100 | - ) | ||
101 | -set(CMAKE_C_COMPILER_ID "GNU") | ||
102 | - | ||
103 | -# Preprocessor definitions for this target. | ||
104 | -set(CMAKE_TARGET_DEFINITIONS_C | ||
105 | - "MACRO_AUDIODEAL_MODULE" | ||
106 | - "MACRO_MEGAPHONE_MODULE" | ||
107 | - ) | ||
108 | - | ||
109 | -# The include file search paths: | ||
110 | -set(CMAKE_C_TARGET_INCLUDE_PATH | ||
111 | - "../../../JZsdk_Common" | ||
112 | - "../../../JZsdk_Config" | ||
113 | - "../../../JZsdk_hal" | ||
114 | - "../../../Module/Megaphone" | ||
115 | - "../../../Module/Ircut" | ||
116 | - "../../../Module/Gimbal" | ||
117 | - "../../../Module/Lighting" | ||
118 | - "../../../Module/UI_control" | ||
119 | - "../../../Module/Camera" | ||
120 | - "../../../Module/COMMONManager" | ||
121 | - "../../../Module/TestAPP" | ||
122 | - "../../../Module/ImageProcessing" | ||
123 | - "../../../Module/SerialManagement" | ||
124 | - "../../../Module/ExtensionAPI" | ||
125 | - "../../../Module" | ||
126 | - "../../../ThirdParty/iFLYTEK_TTS/include" | ||
127 | - "../../../ThirdParty/Espeak/include" | ||
128 | - "../../../ThirdParty/AlsaLib/include" | ||
129 | - "../../../ThirdParty/opus/include" | ||
130 | - "../../../ThirdParty/ffmpeg_6_0/include" | ||
131 | - "../../../ThirdParty/x264_2245/include" | ||
132 | - "../../../ThirdParty/fdk_aac_2_0_3/include" | ||
133 | - ) | ||
134 | - | ||
135 | -# Targets to which this target links. | ||
136 | -set(CMAKE_TARGET_LINKED_INFO_FILES | ||
137 | - ) | ||
138 | - | ||
139 | -# Fortran module output directory. | ||
140 | -set(CMAKE_Fortran_TARGET_MODULE_DIR "") |
不能预览此文件类型
不能预览此文件类型
此 diff 太大无法显示。
1 | -file(REMOVE_RECURSE | ||
2 | - "CMakeFiles/ATTENTION_APP.dir/application/main.c.o" | ||
3 | - "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o" | ||
4 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o" | ||
5 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o" | ||
6 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o" | ||
7 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c.o" | ||
8 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o" | ||
9 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o" | ||
10 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o" | ||
11 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o" | ||
12 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o" | ||
13 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o" | ||
14 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o" | ||
15 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger_Init.c.o" | ||
16 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_monitor.c.o" | ||
17 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o" | ||
18 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o" | ||
19 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c.o" | ||
20 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c.o" | ||
21 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c.o" | ||
22 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c.o" | ||
23 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c.o" | ||
24 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c.o" | ||
25 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c.o" | ||
26 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o" | ||
27 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o" | ||
28 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" | ||
29 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" | ||
30 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" | ||
31 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" | ||
32 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" | ||
33 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" | ||
34 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c.o" | ||
35 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c.o" | ||
36 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c.o" | ||
37 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c.o" | ||
38 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o" | ||
39 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o" | ||
40 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c.o" | ||
41 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o" | ||
42 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o" | ||
43 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o" | ||
44 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" | ||
45 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" | ||
46 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" | ||
47 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/LanguageInfo/LanguageInfo.c.o" | ||
48 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" | ||
49 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o" | ||
50 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" | ||
51 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" | ||
52 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o" | ||
53 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" | ||
54 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" | ||
55 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" | ||
56 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o" | ||
57 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o" | ||
58 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o" | ||
59 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o" | ||
60 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o" | ||
61 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o" | ||
62 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o" | ||
63 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c.o" | ||
64 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o" | ||
65 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o" | ||
66 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" | ||
67 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" | ||
68 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o" | ||
69 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" | ||
70 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c.o" | ||
71 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c.o" | ||
72 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o" | ||
73 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c.o" | ||
74 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c.o" | ||
75 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o" | ||
76 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c.o" | ||
77 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c.o" | ||
78 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c.o" | ||
79 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PowerSimulation/Meg_PowerSimulation.c.o" | ||
80 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o" | ||
81 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o" | ||
82 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o" | ||
83 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o" | ||
84 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c.o" | ||
85 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c.o" | ||
86 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o" | ||
87 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o" | ||
88 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" | ||
89 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/ExtensionAPI/JZsdk_ExpansionApi.c.o" | ||
90 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o" | ||
91 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o" | ||
92 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" | ||
93 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" | ||
94 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" | ||
95 | - "ATTENTION_APP.pdb" | ||
96 | - "ATTENTION_APP" | ||
97 | -) | ||
98 | - | ||
99 | -# Per-language clean rules from dependency scanning. | ||
100 | -foreach(lang C) | ||
101 | - include(CMakeFiles/ATTENTION_APP.dir/cmake_clean_${lang}.cmake OPTIONAL) | ||
102 | -endforeach() |
此 diff 太大无法显示。
1 | -# CMAKE generated file: DO NOT EDIT! | ||
2 | -# Generated by "Unix Makefiles" Generator, CMake Version 3.5 | ||
3 | - | ||
4 | -# compile C with /usr/local/arm/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc | ||
5 | -C_FLAGS = -pthread -std=gnu99 -lm -ldl -lstdc++ -D COMPILE_MODE_MODULE | ||
6 | - | ||
7 | -C_DEFINES = -DMACRO_AUDIODEAL_MODULE -DMACRO_MEGAPHONE_MODULE | ||
8 | - | ||
9 | -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/ExtensionAPI -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 | ||
10 | - |
1 | -/usr/local/arm/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread 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_Logger/JZsdk_Logger_Init.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_monitor.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/LanguageInfo/LanguageInfo.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/Ircut/H3_ircut/H3_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/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/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/Megaphone.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/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/PowerSimulation/Meg_PowerSimulation.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/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/Volume/volume.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/ExtensionAPI/JZsdk_ExpansionApi.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 -rdynamic -lmsc ../../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 ../../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so ../../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 ../../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libavcodec.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libavdevice.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libavfilter.so.9 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libavformat.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libavutil.so.58 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libpostproc.so.57 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libswresample.so.4 ../../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libswscale.so.7 ../../../ThirdParty/x264_2245/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libx264.so.157 ../../../ThirdParty/fdk_aac_2_0_3/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf/libfdk-aac.so.2 -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/opus/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/gcc-linaro-7.2.1-2017.11-x86_64_arm-linux-gnueabihf |
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
不能预览此文件类型
1 | -CMAKE_PROGRESS_1 = 1 | ||
2 | -CMAKE_PROGRESS_2 = 2 | ||
3 | -CMAKE_PROGRESS_3 = 3 | ||
4 | -CMAKE_PROGRESS_4 = 4 | ||
5 | -CMAKE_PROGRESS_5 = 5 | ||
6 | -CMAKE_PROGRESS_6 = 6 | ||
7 | -CMAKE_PROGRESS_7 = 7 | ||
8 | -CMAKE_PROGRESS_8 = 8 | ||
9 | -CMAKE_PROGRESS_9 = 9 | ||
10 | -CMAKE_PROGRESS_10 = 10 | ||
11 | -CMAKE_PROGRESS_11 = 11 | ||
12 | -CMAKE_PROGRESS_12 = 12 | ||
13 | -CMAKE_PROGRESS_13 = 13 | ||
14 | -CMAKE_PROGRESS_14 = 14 | ||
15 | -CMAKE_PROGRESS_15 = 15 | ||
16 | -CMAKE_PROGRESS_16 = 16 | ||
17 | -CMAKE_PROGRESS_17 = 17 | ||
18 | -CMAKE_PROGRESS_18 = 18 | ||
19 | -CMAKE_PROGRESS_19 = 19 | ||
20 | -CMAKE_PROGRESS_20 = 20 | ||
21 | -CMAKE_PROGRESS_21 = 21 | ||
22 | -CMAKE_PROGRESS_22 = 22 | ||
23 | -CMAKE_PROGRESS_23 = 23 | ||
24 | -CMAKE_PROGRESS_24 = 24 | ||
25 | -CMAKE_PROGRESS_25 = 25 | ||
26 | -CMAKE_PROGRESS_26 = 26 | ||
27 | -CMAKE_PROGRESS_27 = 27 | ||
28 | -CMAKE_PROGRESS_28 = 28 | ||
29 | -CMAKE_PROGRESS_29 = 29 | ||
30 | -CMAKE_PROGRESS_30 = 30 | ||
31 | -CMAKE_PROGRESS_31 = 31 | ||
32 | -CMAKE_PROGRESS_32 = 32 | ||
33 | -CMAKE_PROGRESS_33 = 33 | ||
34 | -CMAKE_PROGRESS_34 = 34 | ||
35 | -CMAKE_PROGRESS_35 = 35 | ||
36 | -CMAKE_PROGRESS_36 = 36 | ||
37 | -CMAKE_PROGRESS_37 = 37 | ||
38 | -CMAKE_PROGRESS_38 = 38 | ||
39 | -CMAKE_PROGRESS_39 = 39 | ||
40 | -CMAKE_PROGRESS_40 = 40 | ||
41 | -CMAKE_PROGRESS_41 = 41 | ||
42 | -CMAKE_PROGRESS_42 = 42 | ||
43 | -CMAKE_PROGRESS_43 = 43 | ||
44 | -CMAKE_PROGRESS_44 = 44 | ||
45 | -CMAKE_PROGRESS_45 = 45 | ||
46 | -CMAKE_PROGRESS_46 = 46 | ||
47 | -CMAKE_PROGRESS_47 = 47 | ||
48 | -CMAKE_PROGRESS_48 = 48 | ||
49 | -CMAKE_PROGRESS_49 = 49 | ||
50 | -CMAKE_PROGRESS_50 = 50 | ||
51 | -CMAKE_PROGRESS_51 = 51 | ||
52 | -CMAKE_PROGRESS_52 = 52 | ||
53 | -CMAKE_PROGRESS_53 = 53 | ||
54 | -CMAKE_PROGRESS_54 = 54 | ||
55 | -CMAKE_PROGRESS_55 = 55 | ||
56 | -CMAKE_PROGRESS_56 = 56 | ||
57 | -CMAKE_PROGRESS_57 = 57 | ||
58 | -CMAKE_PROGRESS_58 = 58 | ||
59 | -CMAKE_PROGRESS_59 = 59 | ||
60 | -CMAKE_PROGRESS_60 = 60 | ||
61 | -CMAKE_PROGRESS_61 = 61 | ||
62 | -CMAKE_PROGRESS_62 = 62 | ||
63 | -CMAKE_PROGRESS_63 = 63 | ||
64 | -CMAKE_PROGRESS_64 = 64 | ||
65 | -CMAKE_PROGRESS_65 = 65 | ||
66 | -CMAKE_PROGRESS_66 = 66 | ||
67 | -CMAKE_PROGRESS_67 = 67 | ||
68 | -CMAKE_PROGRESS_68 = 68 | ||
69 | -CMAKE_PROGRESS_69 = 69 | ||
70 | -CMAKE_PROGRESS_70 = 70 | ||
71 | -CMAKE_PROGRESS_71 = 71 | ||
72 | -CMAKE_PROGRESS_72 = 72 | ||
73 | -CMAKE_PROGRESS_73 = 73 | ||
74 | -CMAKE_PROGRESS_74 = 74 | ||
75 | -CMAKE_PROGRESS_75 = 75 | ||
76 | -CMAKE_PROGRESS_76 = 76 | ||
77 | -CMAKE_PROGRESS_77 = 77 | ||
78 | -CMAKE_PROGRESS_78 = 78 | ||
79 | -CMAKE_PROGRESS_79 = 79 | ||
80 | -CMAKE_PROGRESS_80 = 80 | ||
81 | -CMAKE_PROGRESS_81 = 81 | ||
82 | -CMAKE_PROGRESS_82 = 82 | ||
83 | -CMAKE_PROGRESS_83 = 83 | ||
84 | -CMAKE_PROGRESS_84 = 84 | ||
85 | -CMAKE_PROGRESS_85 = 85 | ||
86 | -CMAKE_PROGRESS_86 = 86 | ||
87 | -CMAKE_PROGRESS_87 = 87 | ||
88 | -CMAKE_PROGRESS_88 = 88 | ||
89 | -CMAKE_PROGRESS_89 = 89 | ||
90 | -CMAKE_PROGRESS_90 = 90 | ||
91 | -CMAKE_PROGRESS_91 = 91 | ||
92 | -CMAKE_PROGRESS_92 = 92 | ||
93 | -CMAKE_PROGRESS_93 = 93 | ||
94 | -CMAKE_PROGRESS_94 = 94 | ||
95 | - |
1 | -# CMAKE generated file: DO NOT EDIT! | ||
2 | -# Generated by "Unix Makefiles" Generator, CMake Version 3.5 | ||
3 | - | ||
4 | -# Relative path conversion top directories. | ||
5 | -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序") | ||
6 | -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build") | ||
7 | - | ||
8 | -# Force unix paths in dependencies. | ||
9 | -set(CMAKE_FORCE_UNIX_PATHS 1) | ||
10 | - | ||
11 | - | ||
12 | -# The C and CXX include file regular expressions for this directory. | ||
13 | -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") | ||
14 | -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") | ||
15 | -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) | ||
16 | -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) |
@@ -25,530 +25,3 @@ Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" p | @@ -25,530 +25,3 @@ Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" p | ||
25 | 25 | ||
26 | The CXX compiler identification is GNU, found in "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out" | 26 | The CXX compiler identification is GNU, found in "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out" |
27 | 27 | ||
28 | -Determining if the C compiler works passed with the following output: | ||
29 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
30 | - | ||
31 | -Run Build Command:"/usr/bin/make" "cmTC_8b9ca/fast" | ||
32 | -/usr/bin/make -f CMakeFiles/cmTC_8b9ca.dir/build.make CMakeFiles/cmTC_8b9ca.dir/build | ||
33 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
34 | -Building C object CMakeFiles/cmTC_8b9ca.dir/testCCompiler.c.o | ||
35 | -/usr/bin/cc -o CMakeFiles/cmTC_8b9ca.dir/testCCompiler.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp/testCCompiler.c | ||
36 | -Linking C executable cmTC_8b9ca | ||
37 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8b9ca.dir/link.txt --verbose=1 | ||
38 | -/usr/bin/cc CMakeFiles/cmTC_8b9ca.dir/testCCompiler.c.o -o cmTC_8b9ca -rdynamic | ||
39 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
40 | - | ||
41 | - | ||
42 | -Detecting C compiler ABI info compiled with the following output: | ||
43 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
44 | - | ||
45 | -Run Build Command:"/usr/bin/make" "cmTC_6df81/fast" | ||
46 | -/usr/bin/make -f CMakeFiles/cmTC_6df81.dir/build.make CMakeFiles/cmTC_6df81.dir/build | ||
47 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
48 | -Building C object CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o | ||
49 | -/usr/bin/cc -o CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c | ||
50 | -Linking C executable cmTC_6df81 | ||
51 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6df81.dir/link.txt --verbose=1 | ||
52 | -/usr/bin/cc -v CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o -o cmTC_6df81 -rdynamic | ||
53 | -Using built-in specs. | ||
54 | -COLLECT_GCC=/usr/bin/cc | ||
55 | -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper | ||
56 | -Target: x86_64-linux-gnu | ||
57 | -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu | ||
58 | -Thread model: posix | ||
59 | -gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | ||
60 | -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ | ||
61 | -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ | ||
62 | -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6df81' '-rdynamic' '-mtune=generic' '-march=x86-64' | ||
63 | - /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccq2tqvV.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_6df81 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o | ||
64 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
65 | - | ||
66 | - | ||
67 | -Parsed C implicit link information from above output: | ||
68 | - link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] | ||
69 | - ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] | ||
70 | - ignore line: [] | ||
71 | - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_6df81/fast"] | ||
72 | - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_6df81.dir/build.make CMakeFiles/cmTC_6df81.dir/build] | ||
73 | - ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] | ||
74 | - ignore line: [Building C object CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o] | ||
75 | - ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c] | ||
76 | - ignore line: [Linking C executable cmTC_6df81] | ||
77 | - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6df81.dir/link.txt --verbose=1] | ||
78 | - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o -o cmTC_6df81 -rdynamic ] | ||
79 | - ignore line: [Using built-in specs.] | ||
80 | - ignore line: [COLLECT_GCC=/usr/bin/cc] | ||
81 | - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] | ||
82 | - ignore line: [Target: x86_64-linux-gnu] | ||
83 | - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] | ||
84 | - ignore line: [Thread model: posix] | ||
85 | - ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] | ||
86 | - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] | ||
87 | - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] | ||
88 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6df81' '-rdynamic' '-mtune=generic' '-march=x86-64'] | ||
89 | - link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccq2tqvV.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_6df81 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] | ||
90 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore | ||
91 | - arg [-plugin] ==> ignore | ||
92 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore | ||
93 | - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore | ||
94 | - arg [-plugin-opt=-fresolution=/tmp/ccq2tqvV.res] ==> ignore | ||
95 | - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | ||
96 | - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | ||
97 | - arg [-plugin-opt=-pass-through=-lc] ==> ignore | ||
98 | - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | ||
99 | - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | ||
100 | - arg [--sysroot=/] ==> ignore | ||
101 | - arg [--build-id] ==> ignore | ||
102 | - arg [--eh-frame-hdr] ==> ignore | ||
103 | - arg [-m] ==> ignore | ||
104 | - arg [elf_x86_64] ==> ignore | ||
105 | - arg [--hash-style=gnu] ==> ignore | ||
106 | - arg [--as-needed] ==> ignore | ||
107 | - arg [-export-dynamic] ==> ignore | ||
108 | - arg [-dynamic-linker] ==> ignore | ||
109 | - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore | ||
110 | - arg [-zrelro] ==> ignore | ||
111 | - arg [-o] ==> ignore | ||
112 | - arg [cmTC_6df81] ==> ignore | ||
113 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore | ||
114 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore | ||
115 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore | ||
116 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] | ||
117 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] | ||
118 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] | ||
119 | - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] | ||
120 | - arg [-L/lib/../lib] ==> dir [/lib/../lib] | ||
121 | - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] | ||
122 | - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] | ||
123 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] | ||
124 | - arg [CMakeFiles/cmTC_6df81.dir/CMakeCCompilerABI.c.o] ==> ignore | ||
125 | - arg [-lgcc] ==> lib [gcc] | ||
126 | - arg [--as-needed] ==> ignore | ||
127 | - arg [-lgcc_s] ==> lib [gcc_s] | ||
128 | - arg [--no-as-needed] ==> ignore | ||
129 | - arg [-lc] ==> lib [c] | ||
130 | - arg [-lgcc] ==> lib [gcc] | ||
131 | - arg [--as-needed] ==> ignore | ||
132 | - arg [-lgcc_s] ==> lib [gcc_s] | ||
133 | - arg [--no-as-needed] ==> ignore | ||
134 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore | ||
135 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore | ||
136 | - remove lib [gcc] | ||
137 | - remove lib [gcc_s] | ||
138 | - remove lib [gcc] | ||
139 | - remove lib [gcc_s] | ||
140 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] | ||
141 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] | ||
142 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] | ||
143 | - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] | ||
144 | - collapse library dir [/lib/../lib] ==> [/lib] | ||
145 | - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] | ||
146 | - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] | ||
147 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] | ||
148 | - implicit libs: [c] | ||
149 | - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] | ||
150 | - implicit fwks: [] | ||
151 | - | ||
152 | - | ||
153 | - | ||
154 | - | ||
155 | -Detecting C [-std=c11] compiler features compiled with the following output: | ||
156 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
157 | - | ||
158 | -Run Build Command:"/usr/bin/make" "cmTC_aef18/fast" | ||
159 | -/usr/bin/make -f CMakeFiles/cmTC_aef18.dir/build.make CMakeFiles/cmTC_aef18.dir/build | ||
160 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
161 | -Building C object CMakeFiles/cmTC_aef18.dir/feature_tests.c.o | ||
162 | -/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_aef18.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c | ||
163 | -Linking C executable cmTC_aef18 | ||
164 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aef18.dir/link.txt --verbose=1 | ||
165 | -/usr/bin/cc CMakeFiles/cmTC_aef18.dir/feature_tests.c.o -o cmTC_aef18 -rdynamic | ||
166 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
167 | - | ||
168 | - | ||
169 | - Feature record: C_FEATURE:1c_function_prototypes | ||
170 | - Feature record: C_FEATURE:1c_restrict | ||
171 | - Feature record: C_FEATURE:1c_static_assert | ||
172 | - Feature record: C_FEATURE:1c_variadic_macros | ||
173 | - | ||
174 | - | ||
175 | -Detecting C [-std=c99] compiler features compiled with the following output: | ||
176 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
177 | - | ||
178 | -Run Build Command:"/usr/bin/make" "cmTC_bb9e3/fast" | ||
179 | -/usr/bin/make -f CMakeFiles/cmTC_bb9e3.dir/build.make CMakeFiles/cmTC_bb9e3.dir/build | ||
180 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
181 | -Building C object CMakeFiles/cmTC_bb9e3.dir/feature_tests.c.o | ||
182 | -/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_bb9e3.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c | ||
183 | -Linking C executable cmTC_bb9e3 | ||
184 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bb9e3.dir/link.txt --verbose=1 | ||
185 | -/usr/bin/cc CMakeFiles/cmTC_bb9e3.dir/feature_tests.c.o -o cmTC_bb9e3 -rdynamic | ||
186 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
187 | - | ||
188 | - | ||
189 | - Feature record: C_FEATURE:1c_function_prototypes | ||
190 | - Feature record: C_FEATURE:1c_restrict | ||
191 | - Feature record: C_FEATURE:0c_static_assert | ||
192 | - Feature record: C_FEATURE:1c_variadic_macros | ||
193 | - | ||
194 | - | ||
195 | -Detecting C [-std=c90] compiler features compiled with the following output: | ||
196 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
197 | - | ||
198 | -Run Build Command:"/usr/bin/make" "cmTC_410dc/fast" | ||
199 | -/usr/bin/make -f CMakeFiles/cmTC_410dc.dir/build.make CMakeFiles/cmTC_410dc.dir/build | ||
200 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
201 | -Building C object CMakeFiles/cmTC_410dc.dir/feature_tests.c.o | ||
202 | -/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_410dc.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c | ||
203 | -Linking C executable cmTC_410dc | ||
204 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_410dc.dir/link.txt --verbose=1 | ||
205 | -/usr/bin/cc CMakeFiles/cmTC_410dc.dir/feature_tests.c.o -o cmTC_410dc -rdynamic | ||
206 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
207 | - | ||
208 | - | ||
209 | - Feature record: C_FEATURE:1c_function_prototypes | ||
210 | - Feature record: C_FEATURE:0c_restrict | ||
211 | - Feature record: C_FEATURE:0c_static_assert | ||
212 | - Feature record: C_FEATURE:0c_variadic_macros | ||
213 | -Determining if the CXX compiler works passed with the following output: | ||
214 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
215 | - | ||
216 | -Run Build Command:"/usr/bin/make" "cmTC_299fb/fast" | ||
217 | -/usr/bin/make -f CMakeFiles/cmTC_299fb.dir/build.make CMakeFiles/cmTC_299fb.dir/build | ||
218 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
219 | -Building CXX object CMakeFiles/cmTC_299fb.dir/testCXXCompiler.cxx.o | ||
220 | -/usr/bin/c++ -o CMakeFiles/cmTC_299fb.dir/testCXXCompiler.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx | ||
221 | -Linking CXX executable cmTC_299fb | ||
222 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_299fb.dir/link.txt --verbose=1 | ||
223 | -/usr/bin/c++ CMakeFiles/cmTC_299fb.dir/testCXXCompiler.cxx.o -o cmTC_299fb -rdynamic | ||
224 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
225 | - | ||
226 | - | ||
227 | -Detecting CXX compiler ABI info compiled with the following output: | ||
228 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
229 | - | ||
230 | -Run Build Command:"/usr/bin/make" "cmTC_588ee/fast" | ||
231 | -/usr/bin/make -f CMakeFiles/cmTC_588ee.dir/build.make CMakeFiles/cmTC_588ee.dir/build | ||
232 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
233 | -Building CXX object CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o | ||
234 | -/usr/bin/c++ -o CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp | ||
235 | -Linking CXX executable cmTC_588ee | ||
236 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_588ee.dir/link.txt --verbose=1 | ||
237 | -/usr/bin/c++ -v CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_588ee -rdynamic | ||
238 | -Using built-in specs. | ||
239 | -COLLECT_GCC=/usr/bin/c++ | ||
240 | -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper | ||
241 | -Target: x86_64-linux-gnu | ||
242 | -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu | ||
243 | -Thread model: posix | ||
244 | -gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | ||
245 | -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ | ||
246 | -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ | ||
247 | -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_588ee' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' | ||
248 | - /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccUiA26C.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_588ee /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o | ||
249 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
250 | - | ||
251 | - | ||
252 | -Parsed CXX implicit link information from above output: | ||
253 | - link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] | ||
254 | - ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] | ||
255 | - ignore line: [] | ||
256 | - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_588ee/fast"] | ||
257 | - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_588ee.dir/build.make CMakeFiles/cmTC_588ee.dir/build] | ||
258 | - ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] | ||
259 | - ignore line: [Building CXX object CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o] | ||
260 | - ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp] | ||
261 | - ignore line: [Linking CXX executable cmTC_588ee] | ||
262 | - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_588ee.dir/link.txt --verbose=1] | ||
263 | - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_588ee -rdynamic ] | ||
264 | - ignore line: [Using built-in specs.] | ||
265 | - ignore line: [COLLECT_GCC=/usr/bin/c++] | ||
266 | - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] | ||
267 | - ignore line: [Target: x86_64-linux-gnu] | ||
268 | - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] | ||
269 | - ignore line: [Thread model: posix] | ||
270 | - ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] | ||
271 | - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] | ||
272 | - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] | ||
273 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_588ee' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] | ||
274 | - link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccUiA26C.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_588ee /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] | ||
275 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore | ||
276 | - arg [-plugin] ==> ignore | ||
277 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore | ||
278 | - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore | ||
279 | - arg [-plugin-opt=-fresolution=/tmp/ccUiA26C.res] ==> ignore | ||
280 | - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | ||
281 | - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | ||
282 | - arg [-plugin-opt=-pass-through=-lc] ==> ignore | ||
283 | - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | ||
284 | - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | ||
285 | - arg [--sysroot=/] ==> ignore | ||
286 | - arg [--build-id] ==> ignore | ||
287 | - arg [--eh-frame-hdr] ==> ignore | ||
288 | - arg [-m] ==> ignore | ||
289 | - arg [elf_x86_64] ==> ignore | ||
290 | - arg [--hash-style=gnu] ==> ignore | ||
291 | - arg [--as-needed] ==> ignore | ||
292 | - arg [-export-dynamic] ==> ignore | ||
293 | - arg [-dynamic-linker] ==> ignore | ||
294 | - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore | ||
295 | - arg [-zrelro] ==> ignore | ||
296 | - arg [-o] ==> ignore | ||
297 | - arg [cmTC_588ee] ==> ignore | ||
298 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore | ||
299 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore | ||
300 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore | ||
301 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] | ||
302 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] | ||
303 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] | ||
304 | - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] | ||
305 | - arg [-L/lib/../lib] ==> dir [/lib/../lib] | ||
306 | - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] | ||
307 | - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] | ||
308 | - arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] | ||
309 | - arg [CMakeFiles/cmTC_588ee.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore | ||
310 | - arg [-lstdc++] ==> lib [stdc++] | ||
311 | - arg [-lm] ==> lib [m] | ||
312 | - arg [-lgcc_s] ==> lib [gcc_s] | ||
313 | - arg [-lgcc] ==> lib [gcc] | ||
314 | - arg [-lc] ==> lib [c] | ||
315 | - arg [-lgcc_s] ==> lib [gcc_s] | ||
316 | - arg [-lgcc] ==> lib [gcc] | ||
317 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore | ||
318 | - arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore | ||
319 | - remove lib [gcc_s] | ||
320 | - remove lib [gcc] | ||
321 | - remove lib [gcc_s] | ||
322 | - remove lib [gcc] | ||
323 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] | ||
324 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] | ||
325 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] | ||
326 | - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] | ||
327 | - collapse library dir [/lib/../lib] ==> [/lib] | ||
328 | - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] | ||
329 | - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] | ||
330 | - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] | ||
331 | - implicit libs: [stdc++;m;c] | ||
332 | - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] | ||
333 | - implicit fwks: [] | ||
334 | - | ||
335 | - | ||
336 | - | ||
337 | - | ||
338 | -Detecting CXX [-std=c++14] compiler features compiled with the following output: | ||
339 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
340 | - | ||
341 | -Run Build Command:"/usr/bin/make" "cmTC_d1271/fast" | ||
342 | -/usr/bin/make -f CMakeFiles/cmTC_d1271.dir/build.make CMakeFiles/cmTC_d1271.dir/build | ||
343 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
344 | -Building CXX object CMakeFiles/cmTC_d1271.dir/feature_tests.cxx.o | ||
345 | -/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_d1271.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx | ||
346 | -Linking CXX executable cmTC_d1271 | ||
347 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d1271.dir/link.txt --verbose=1 | ||
348 | -/usr/bin/c++ CMakeFiles/cmTC_d1271.dir/feature_tests.cxx.o -o cmTC_d1271 -rdynamic | ||
349 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
350 | - | ||
351 | - | ||
352 | - Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers | ||
353 | - Feature record: CXX_FEATURE:1cxx_alias_templates | ||
354 | - Feature record: CXX_FEATURE:1cxx_alignas | ||
355 | - Feature record: CXX_FEATURE:1cxx_alignof | ||
356 | - Feature record: CXX_FEATURE:1cxx_attributes | ||
357 | - Feature record: CXX_FEATURE:1cxx_attribute_deprecated | ||
358 | - Feature record: CXX_FEATURE:1cxx_auto_type | ||
359 | - Feature record: CXX_FEATURE:1cxx_binary_literals | ||
360 | - Feature record: CXX_FEATURE:1cxx_constexpr | ||
361 | - Feature record: CXX_FEATURE:1cxx_contextual_conversions | ||
362 | - Feature record: CXX_FEATURE:1cxx_decltype | ||
363 | - Feature record: CXX_FEATURE:1cxx_decltype_auto | ||
364 | - Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types | ||
365 | - Feature record: CXX_FEATURE:1cxx_default_function_template_args | ||
366 | - Feature record: CXX_FEATURE:1cxx_defaulted_functions | ||
367 | - Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers | ||
368 | - Feature record: CXX_FEATURE:1cxx_delegating_constructors | ||
369 | - Feature record: CXX_FEATURE:1cxx_deleted_functions | ||
370 | - Feature record: CXX_FEATURE:1cxx_digit_separators | ||
371 | - Feature record: CXX_FEATURE:1cxx_enum_forward_declarations | ||
372 | - Feature record: CXX_FEATURE:1cxx_explicit_conversions | ||
373 | - Feature record: CXX_FEATURE:1cxx_extended_friend_declarations | ||
374 | - Feature record: CXX_FEATURE:1cxx_extern_templates | ||
375 | - Feature record: CXX_FEATURE:1cxx_final | ||
376 | - Feature record: CXX_FEATURE:1cxx_func_identifier | ||
377 | - Feature record: CXX_FEATURE:1cxx_generalized_initializers | ||
378 | - Feature record: CXX_FEATURE:1cxx_generic_lambdas | ||
379 | - Feature record: CXX_FEATURE:1cxx_inheriting_constructors | ||
380 | - Feature record: CXX_FEATURE:1cxx_inline_namespaces | ||
381 | - Feature record: CXX_FEATURE:1cxx_lambdas | ||
382 | - Feature record: CXX_FEATURE:1cxx_lambda_init_captures | ||
383 | - Feature record: CXX_FEATURE:1cxx_local_type_template_args | ||
384 | - Feature record: CXX_FEATURE:1cxx_long_long_type | ||
385 | - Feature record: CXX_FEATURE:1cxx_noexcept | ||
386 | - Feature record: CXX_FEATURE:1cxx_nonstatic_member_init | ||
387 | - Feature record: CXX_FEATURE:1cxx_nullptr | ||
388 | - Feature record: CXX_FEATURE:1cxx_override | ||
389 | - Feature record: CXX_FEATURE:1cxx_range_for | ||
390 | - Feature record: CXX_FEATURE:1cxx_raw_string_literals | ||
391 | - Feature record: CXX_FEATURE:1cxx_reference_qualified_functions | ||
392 | - Feature record: CXX_FEATURE:1cxx_relaxed_constexpr | ||
393 | - Feature record: CXX_FEATURE:1cxx_return_type_deduction | ||
394 | - Feature record: CXX_FEATURE:1cxx_right_angle_brackets | ||
395 | - Feature record: CXX_FEATURE:1cxx_rvalue_references | ||
396 | - Feature record: CXX_FEATURE:1cxx_sizeof_member | ||
397 | - Feature record: CXX_FEATURE:1cxx_static_assert | ||
398 | - Feature record: CXX_FEATURE:1cxx_strong_enums | ||
399 | - Feature record: CXX_FEATURE:1cxx_template_template_parameters | ||
400 | - Feature record: CXX_FEATURE:1cxx_thread_local | ||
401 | - Feature record: CXX_FEATURE:1cxx_trailing_return_types | ||
402 | - Feature record: CXX_FEATURE:1cxx_unicode_literals | ||
403 | - Feature record: CXX_FEATURE:1cxx_uniform_initialization | ||
404 | - Feature record: CXX_FEATURE:1cxx_unrestricted_unions | ||
405 | - Feature record: CXX_FEATURE:1cxx_user_literals | ||
406 | - Feature record: CXX_FEATURE:1cxx_variable_templates | ||
407 | - Feature record: CXX_FEATURE:1cxx_variadic_macros | ||
408 | - Feature record: CXX_FEATURE:1cxx_variadic_templates | ||
409 | - | ||
410 | - | ||
411 | -Detecting CXX [-std=c++11] compiler features compiled with the following output: | ||
412 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
413 | - | ||
414 | -Run Build Command:"/usr/bin/make" "cmTC_4b77a/fast" | ||
415 | -/usr/bin/make -f CMakeFiles/cmTC_4b77a.dir/build.make CMakeFiles/cmTC_4b77a.dir/build | ||
416 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
417 | -Building CXX object CMakeFiles/cmTC_4b77a.dir/feature_tests.cxx.o | ||
418 | -/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_4b77a.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx | ||
419 | -Linking CXX executable cmTC_4b77a | ||
420 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4b77a.dir/link.txt --verbose=1 | ||
421 | -/usr/bin/c++ CMakeFiles/cmTC_4b77a.dir/feature_tests.cxx.o -o cmTC_4b77a -rdynamic | ||
422 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
423 | - | ||
424 | - | ||
425 | - Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers | ||
426 | - Feature record: CXX_FEATURE:1cxx_alias_templates | ||
427 | - Feature record: CXX_FEATURE:1cxx_alignas | ||
428 | - Feature record: CXX_FEATURE:1cxx_alignof | ||
429 | - Feature record: CXX_FEATURE:1cxx_attributes | ||
430 | - Feature record: CXX_FEATURE:0cxx_attribute_deprecated | ||
431 | - Feature record: CXX_FEATURE:1cxx_auto_type | ||
432 | - Feature record: CXX_FEATURE:0cxx_binary_literals | ||
433 | - Feature record: CXX_FEATURE:1cxx_constexpr | ||
434 | - Feature record: CXX_FEATURE:0cxx_contextual_conversions | ||
435 | - Feature record: CXX_FEATURE:1cxx_decltype | ||
436 | - Feature record: CXX_FEATURE:0cxx_decltype_auto | ||
437 | - Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types | ||
438 | - Feature record: CXX_FEATURE:1cxx_default_function_template_args | ||
439 | - Feature record: CXX_FEATURE:1cxx_defaulted_functions | ||
440 | - Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers | ||
441 | - Feature record: CXX_FEATURE:1cxx_delegating_constructors | ||
442 | - Feature record: CXX_FEATURE:1cxx_deleted_functions | ||
443 | - Feature record: CXX_FEATURE:0cxx_digit_separators | ||
444 | - Feature record: CXX_FEATURE:1cxx_enum_forward_declarations | ||
445 | - Feature record: CXX_FEATURE:1cxx_explicit_conversions | ||
446 | - Feature record: CXX_FEATURE:1cxx_extended_friend_declarations | ||
447 | - Feature record: CXX_FEATURE:1cxx_extern_templates | ||
448 | - Feature record: CXX_FEATURE:1cxx_final | ||
449 | - Feature record: CXX_FEATURE:1cxx_func_identifier | ||
450 | - Feature record: CXX_FEATURE:1cxx_generalized_initializers | ||
451 | - Feature record: CXX_FEATURE:0cxx_generic_lambdas | ||
452 | - Feature record: CXX_FEATURE:1cxx_inheriting_constructors | ||
453 | - Feature record: CXX_FEATURE:1cxx_inline_namespaces | ||
454 | - Feature record: CXX_FEATURE:1cxx_lambdas | ||
455 | - Feature record: CXX_FEATURE:0cxx_lambda_init_captures | ||
456 | - Feature record: CXX_FEATURE:1cxx_local_type_template_args | ||
457 | - Feature record: CXX_FEATURE:1cxx_long_long_type | ||
458 | - Feature record: CXX_FEATURE:1cxx_noexcept | ||
459 | - Feature record: CXX_FEATURE:1cxx_nonstatic_member_init | ||
460 | - Feature record: CXX_FEATURE:1cxx_nullptr | ||
461 | - Feature record: CXX_FEATURE:1cxx_override | ||
462 | - Feature record: CXX_FEATURE:1cxx_range_for | ||
463 | - Feature record: CXX_FEATURE:1cxx_raw_string_literals | ||
464 | - Feature record: CXX_FEATURE:1cxx_reference_qualified_functions | ||
465 | - Feature record: CXX_FEATURE:0cxx_relaxed_constexpr | ||
466 | - Feature record: CXX_FEATURE:0cxx_return_type_deduction | ||
467 | - Feature record: CXX_FEATURE:1cxx_right_angle_brackets | ||
468 | - Feature record: CXX_FEATURE:1cxx_rvalue_references | ||
469 | - Feature record: CXX_FEATURE:1cxx_sizeof_member | ||
470 | - Feature record: CXX_FEATURE:1cxx_static_assert | ||
471 | - Feature record: CXX_FEATURE:1cxx_strong_enums | ||
472 | - Feature record: CXX_FEATURE:1cxx_template_template_parameters | ||
473 | - Feature record: CXX_FEATURE:1cxx_thread_local | ||
474 | - Feature record: CXX_FEATURE:1cxx_trailing_return_types | ||
475 | - Feature record: CXX_FEATURE:1cxx_unicode_literals | ||
476 | - Feature record: CXX_FEATURE:1cxx_uniform_initialization | ||
477 | - Feature record: CXX_FEATURE:1cxx_unrestricted_unions | ||
478 | - Feature record: CXX_FEATURE:1cxx_user_literals | ||
479 | - Feature record: CXX_FEATURE:0cxx_variable_templates | ||
480 | - Feature record: CXX_FEATURE:1cxx_variadic_macros | ||
481 | - Feature record: CXX_FEATURE:1cxx_variadic_templates | ||
482 | - | ||
483 | - | ||
484 | -Detecting CXX [-std=c++98] compiler features compiled with the following output: | ||
485 | -Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | ||
486 | - | ||
487 | -Run Build Command:"/usr/bin/make" "cmTC_62153/fast" | ||
488 | -/usr/bin/make -f CMakeFiles/cmTC_62153.dir/build.make CMakeFiles/cmTC_62153.dir/build | ||
489 | -make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
490 | -Building CXX object CMakeFiles/cmTC_62153.dir/feature_tests.cxx.o | ||
491 | -/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_62153.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx | ||
492 | -Linking CXX executable cmTC_62153 | ||
493 | -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62153.dir/link.txt --verbose=1 | ||
494 | -/usr/bin/c++ CMakeFiles/cmTC_62153.dir/feature_tests.cxx.o -o cmTC_62153 -rdynamic | ||
495 | -make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | ||
496 | - | ||
497 | - | ||
498 | - Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers | ||
499 | - Feature record: CXX_FEATURE:0cxx_alias_templates | ||
500 | - Feature record: CXX_FEATURE:0cxx_alignas | ||
501 | - Feature record: CXX_FEATURE:0cxx_alignof | ||
502 | - Feature record: CXX_FEATURE:0cxx_attributes | ||
503 | - Feature record: CXX_FEATURE:0cxx_attribute_deprecated | ||
504 | - Feature record: CXX_FEATURE:0cxx_auto_type | ||
505 | - Feature record: CXX_FEATURE:0cxx_binary_literals | ||
506 | - Feature record: CXX_FEATURE:0cxx_constexpr | ||
507 | - Feature record: CXX_FEATURE:0cxx_contextual_conversions | ||
508 | - Feature record: CXX_FEATURE:0cxx_decltype | ||
509 | - Feature record: CXX_FEATURE:0cxx_decltype_auto | ||
510 | - Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types | ||
511 | - Feature record: CXX_FEATURE:0cxx_default_function_template_args | ||
512 | - Feature record: CXX_FEATURE:0cxx_defaulted_functions | ||
513 | - Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers | ||
514 | - Feature record: CXX_FEATURE:0cxx_delegating_constructors | ||
515 | - Feature record: CXX_FEATURE:0cxx_deleted_functions | ||
516 | - Feature record: CXX_FEATURE:0cxx_digit_separators | ||
517 | - Feature record: CXX_FEATURE:0cxx_enum_forward_declarations | ||
518 | - Feature record: CXX_FEATURE:0cxx_explicit_conversions | ||
519 | - Feature record: CXX_FEATURE:0cxx_extended_friend_declarations | ||
520 | - Feature record: CXX_FEATURE:0cxx_extern_templates | ||
521 | - Feature record: CXX_FEATURE:0cxx_final | ||
522 | - Feature record: CXX_FEATURE:0cxx_func_identifier | ||
523 | - Feature record: CXX_FEATURE:0cxx_generalized_initializers | ||
524 | - Feature record: CXX_FEATURE:0cxx_generic_lambdas | ||
525 | - Feature record: CXX_FEATURE:0cxx_inheriting_constructors | ||
526 | - Feature record: CXX_FEATURE:0cxx_inline_namespaces | ||
527 | - Feature record: CXX_FEATURE:0cxx_lambdas | ||
528 | - Feature record: CXX_FEATURE:0cxx_lambda_init_captures | ||
529 | - Feature record: CXX_FEATURE:0cxx_local_type_template_args | ||
530 | - Feature record: CXX_FEATURE:0cxx_long_long_type | ||
531 | - Feature record: CXX_FEATURE:0cxx_noexcept | ||
532 | - Feature record: CXX_FEATURE:0cxx_nonstatic_member_init | ||
533 | - Feature record: CXX_FEATURE:0cxx_nullptr | ||
534 | - Feature record: CXX_FEATURE:0cxx_override | ||
535 | - Feature record: CXX_FEATURE:0cxx_range_for | ||
536 | - Feature record: CXX_FEATURE:0cxx_raw_string_literals | ||
537 | - Feature record: CXX_FEATURE:0cxx_reference_qualified_functions | ||
538 | - Feature record: CXX_FEATURE:0cxx_relaxed_constexpr | ||
539 | - Feature record: CXX_FEATURE:0cxx_return_type_deduction | ||
540 | - Feature record: CXX_FEATURE:0cxx_right_angle_brackets | ||
541 | - Feature record: CXX_FEATURE:0cxx_rvalue_references | ||
542 | - Feature record: CXX_FEATURE:0cxx_sizeof_member | ||
543 | - Feature record: CXX_FEATURE:0cxx_static_assert | ||
544 | - Feature record: CXX_FEATURE:0cxx_strong_enums | ||
545 | - Feature record: CXX_FEATURE:1cxx_template_template_parameters | ||
546 | - Feature record: CXX_FEATURE:0cxx_thread_local | ||
547 | - Feature record: CXX_FEATURE:0cxx_trailing_return_types | ||
548 | - Feature record: CXX_FEATURE:0cxx_unicode_literals | ||
549 | - Feature record: CXX_FEATURE:0cxx_uniform_initialization | ||
550 | - Feature record: CXX_FEATURE:0cxx_unrestricted_unions | ||
551 | - Feature record: CXX_FEATURE:0cxx_user_literals | ||
552 | - Feature record: CXX_FEATURE:0cxx_variable_templates | ||
553 | - Feature record: CXX_FEATURE:0cxx_variadic_macros | ||
554 | - Feature record: CXX_FEATURE:0cxx_variadic_templates |
1 | -# CMAKE generated file: DO NOT EDIT! | ||
2 | -# Generated by "Unix Makefiles" Generator, CMake Version 3.5 | ||
3 | - | ||
4 | -# The generator used is: | ||
5 | -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") | ||
6 | - | ||
7 | -# The top level Makefile was generated from the following files: | ||
8 | -set(CMAKE_MAKEFILE_DEPENDS | ||
9 | - "CMakeCache.txt" | ||
10 | - "/mnt/hgfs/share/JZSDK_Linux/CmakeConfig/Compiler.cmake" | ||
11 | - "/mnt/hgfs/share/JZSDK_Linux/CmakeConfig/module_build.cmake" | ||
12 | - "/mnt/hgfs/share/JZSDK_Linux/CmakeConfig/module_config.cmake" | ||
13 | - "/mnt/hgfs/share/JZSDK_Linux/CmakeConfig/module_lib_loading.cmake" | ||
14 | - "../CMakeLists.txt" | ||
15 | - "CMakeFiles/3.5.1/CMakeCCompiler.cmake" | ||
16 | - "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" | ||
17 | - "CMakeFiles/3.5.1/CMakeSystem.cmake" | ||
18 | - "CMakeFiles/feature_tests.c" | ||
19 | - "CMakeFiles/feature_tests.cxx" | ||
20 | - "/usr/share/cmake-3.5/Modules/CMakeCCompiler.cmake.in" | ||
21 | - "/usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c" | ||
22 | - "/usr/share/cmake-3.5/Modules/CMakeCInformation.cmake" | ||
23 | - "/usr/share/cmake-3.5/Modules/CMakeCXXCompiler.cmake.in" | ||
24 | - "/usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp" | ||
25 | - "/usr/share/cmake-3.5/Modules/CMakeCXXInformation.cmake" | ||
26 | - "/usr/share/cmake-3.5/Modules/CMakeCommonLanguageInclude.cmake" | ||
27 | - "/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake" | ||
28 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake" | ||
29 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineCXXCompiler.cmake" | ||
30 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineCompileFeatures.cmake" | ||
31 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineCompiler.cmake" | ||
32 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerABI.cmake" | ||
33 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake" | ||
34 | - "/usr/share/cmake-3.5/Modules/CMakeDetermineSystem.cmake" | ||
35 | - "/usr/share/cmake-3.5/Modules/CMakeFindBinUtils.cmake" | ||
36 | - "/usr/share/cmake-3.5/Modules/CMakeGenericSystem.cmake" | ||
37 | - "/usr/share/cmake-3.5/Modules/CMakeLanguageInformation.cmake" | ||
38 | - "/usr/share/cmake-3.5/Modules/CMakeParseArguments.cmake" | ||
39 | - "/usr/share/cmake-3.5/Modules/CMakeParseImplicitLinkInfo.cmake" | ||
40 | - "/usr/share/cmake-3.5/Modules/CMakeSystem.cmake.in" | ||
41 | - "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInformation.cmake" | ||
42 | - "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInitialize.cmake" | ||
43 | - "/usr/share/cmake-3.5/Modules/CMakeTestCCompiler.cmake" | ||
44 | - "/usr/share/cmake-3.5/Modules/CMakeTestCXXCompiler.cmake" | ||
45 | - "/usr/share/cmake-3.5/Modules/CMakeTestCompilerCommon.cmake" | ||
46 | - "/usr/share/cmake-3.5/Modules/CMakeUnixFindMake.cmake" | ||
47 | - "/usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake" | ||
48 | - "/usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake" | ||
49 | - "/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake" | ||
50 | - "/usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake" | ||
51 | - "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake" | ||
52 | - "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" | ||
53 | - "/usr/share/cmake-3.5/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" | ||
54 | - "/usr/share/cmake-3.5/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" | ||
55 | - "/usr/share/cmake-3.5/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" | ||
56 | - "/usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake" | ||
57 | - "/usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" | ||
58 | - "/usr/share/cmake-3.5/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" | ||
59 | - "/usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake" | ||
60 | - "/usr/share/cmake-3.5/Modules/Compiler/GNU-C-FeatureTests.cmake" | ||
61 | - "/usr/share/cmake-3.5/Modules/Compiler/GNU-C.cmake" | ||
62 | - "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX-FeatureTests.cmake" | ||
63 | - "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX.cmake" | ||
64 | - "/usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake" | ||
65 | - "/usr/share/cmake-3.5/Modules/Compiler/GNU.cmake" | ||
66 | - "/usr/share/cmake-3.5/Modules/Compiler/HP-C-DetermineCompiler.cmake" | ||
67 | - "/usr/share/cmake-3.5/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" | ||
68 | - "/usr/share/cmake-3.5/Modules/Compiler/IAR-DetermineCompiler.cmake" | ||
69 | - "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" | ||
70 | - "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" | ||
71 | - "/usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake" | ||
72 | - "/usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" | ||
73 | - "/usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake" | ||
74 | - "/usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" | ||
75 | - "/usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake" | ||
76 | - "/usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake" | ||
77 | - "/usr/share/cmake-3.5/Modules/Compiler/SCO-DetermineCompiler.cmake" | ||
78 | - "/usr/share/cmake-3.5/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" | ||
79 | - "/usr/share/cmake-3.5/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" | ||
80 | - "/usr/share/cmake-3.5/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" | ||
81 | - "/usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake" | ||
82 | - "/usr/share/cmake-3.5/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" | ||
83 | - "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" | ||
84 | - "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" | ||
85 | - "/usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake" | ||
86 | - "/usr/share/cmake-3.5/Modules/Compiler/XL-C-DetermineCompiler.cmake" | ||
87 | - "/usr/share/cmake-3.5/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" | ||
88 | - "/usr/share/cmake-3.5/Modules/Compiler/zOS-C-DetermineCompiler.cmake" | ||
89 | - "/usr/share/cmake-3.5/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" | ||
90 | - "/usr/share/cmake-3.5/Modules/Internal/FeatureTesting.cmake" | ||
91 | - "/usr/share/cmake-3.5/Modules/MultiArchCross.cmake" | ||
92 | - "/usr/share/cmake-3.5/Modules/Platform/Linux-CXX.cmake" | ||
93 | - "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-C.cmake" | ||
94 | - "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-CXX.cmake" | ||
95 | - "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU.cmake" | ||
96 | - "/usr/share/cmake-3.5/Modules/Platform/Linux.cmake" | ||
97 | - "/usr/share/cmake-3.5/Modules/Platform/UnixPaths.cmake" | ||
98 | - ) | ||
99 | - | ||
100 | -# The corresponding makefile is: | ||
101 | -set(CMAKE_MAKEFILE_OUTPUTS | ||
102 | - "Makefile" | ||
103 | - "CMakeFiles/cmake.check_cache" | ||
104 | - ) | ||
105 | - | ||
106 | -# Byproducts of CMake generate step: | ||
107 | -set(CMAKE_MAKEFILE_PRODUCTS | ||
108 | - "CMakeFiles/3.5.1/CMakeSystem.cmake" | ||
109 | - "CMakeFiles/3.5.1/CMakeCCompiler.cmake" | ||
110 | - "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" | ||
111 | - "CMakeFiles/3.5.1/CMakeCCompiler.cmake" | ||
112 | - "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" | ||
113 | - "CMakeFiles/CMakeDirectoryInformation.cmake" | ||
114 | - ) | ||
115 | - | ||
116 | -# Dependency information for all targets: | ||
117 | -set(CMAKE_DEPEND_INFO_FILES | ||
118 | - "CMakeFiles/ATTENTION_APP.dir/DependInfo.cmake" | ||
119 | - ) |
1 | -# CMAKE generated file: DO NOT EDIT! | ||
2 | -# Generated by "Unix Makefiles" Generator, CMake Version 3.5 | ||
3 | - | ||
4 | -# Default target executed when no arguments are given to make. | ||
5 | -default_target: all | ||
6 | - | ||
7 | -.PHONY : default_target | ||
8 | - | ||
9 | -# The main recursive all target | ||
10 | -all: | ||
11 | - | ||
12 | -.PHONY : all | ||
13 | - | ||
14 | -# The main recursive preinstall target | ||
15 | -preinstall: | ||
16 | - | ||
17 | -.PHONY : preinstall | ||
18 | - | ||
19 | -#============================================================================= | ||
20 | -# Special targets provided by cmake. | ||
21 | - | ||
22 | -# Disable implicit rules so canonical targets will work. | ||
23 | -.SUFFIXES: | ||
24 | - | ||
25 | - | ||
26 | -# Remove some rules from gmake that .SUFFIXES does not remove. | ||
27 | -SUFFIXES = | ||
28 | - | ||
29 | -.SUFFIXES: .hpux_make_needs_suffix_list | ||
30 | - | ||
31 | - | ||
32 | -# Suppress display of executed commands. | ||
33 | -$(VERBOSE).SILENT: | ||
34 | - | ||
35 | - | ||
36 | -# A target that is always out of date. | ||
37 | -cmake_force: | ||
38 | - | ||
39 | -.PHONY : cmake_force | ||
40 | - | ||
41 | -#============================================================================= | ||
42 | -# Set environment variables for the build. | ||
43 | - | ||
44 | -# The shell in which to execute make rules. | ||
45 | -SHELL = /bin/sh | ||
46 | - | ||
47 | -# The CMake executable. | ||
48 | -CMAKE_COMMAND = /usr/bin/cmake | ||
49 | - | ||
50 | -# The command to remove a file. | ||
51 | -RM = /usr/bin/cmake -E remove -f | ||
52 | - | ||
53 | -# Escaping for special characters. | ||
54 | -EQUALS = = | ||
55 | - | ||
56 | -# The top-level source directory on which CMake was run. | ||
57 | -CMAKE_SOURCE_DIR = /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序 | ||
58 | - | ||
59 | -# The top-level build directory on which CMake was run. | ||
60 | -CMAKE_BINARY_DIR = /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build | ||
61 | - | ||
62 | -#============================================================================= | ||
63 | -# Target rules for target CMakeFiles/ATTENTION_APP.dir | ||
64 | - | ||
65 | -# All Build rule for target. | ||
66 | -CMakeFiles/ATTENTION_APP.dir/all: | ||
67 | - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/depend | ||
68 | - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/build | ||
69 | - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94 "Built target ATTENTION_APP" | ||
70 | -.PHONY : CMakeFiles/ATTENTION_APP.dir/all | ||
71 | - | ||
72 | -# Include target in all. | ||
73 | -all: CMakeFiles/ATTENTION_APP.dir/all | ||
74 | - | ||
75 | -.PHONY : all | ||
76 | - | ||
77 | -# Build rule for subdir invocation for target. | ||
78 | -CMakeFiles/ATTENTION_APP.dir/rule: cmake_check_build_system | ||
79 | - $(CMAKE_COMMAND) -E cmake_progress_start /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles 94 | ||
80 | - $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ATTENTION_APP.dir/all | ||
81 | - $(CMAKE_COMMAND) -E cmake_progress_start /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles 0 | ||
82 | -.PHONY : CMakeFiles/ATTENTION_APP.dir/rule | ||
83 | - | ||
84 | -# Convenience name for target. | ||
85 | -ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/rule | ||
86 | - | ||
87 | -.PHONY : ATTENTION_APP | ||
88 | - | ||
89 | -# clean rule for target. | ||
90 | -CMakeFiles/ATTENTION_APP.dir/clean: | ||
91 | - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/clean | ||
92 | -.PHONY : CMakeFiles/ATTENTION_APP.dir/clean | ||
93 | - | ||
94 | -# clean rule for target. | ||
95 | -clean: CMakeFiles/ATTENTION_APP.dir/clean | ||
96 | - | ||
97 | -.PHONY : clean | ||
98 | - | ||
99 | -#============================================================================= | ||
100 | -# Special targets to cleanup operation of make. | ||
101 | - | ||
102 | -# Special rule to run CMake to check the build system integrity. | ||
103 | -# No rule that depends on this can have commands that come from listfiles | ||
104 | -# because they might be regenerated. | ||
105 | -cmake_check_build_system: | ||
106 | - $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 | ||
107 | -.PHONY : cmake_check_build_system | ||
108 | - |
1 | -# This file is generated by cmake for dependency checking of the CMakeCache.txt file |
此 diff 太大无法显示。
1 | -# Install script for directory: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序 | ||
2 | - | ||
3 | -# Set the install prefix | ||
4 | -if(NOT DEFINED CMAKE_INSTALL_PREFIX) | ||
5 | - set(CMAKE_INSTALL_PREFIX "/usr/local") | ||
6 | -endif() | ||
7 | -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") | ||
8 | - | ||
9 | -# Set the install configuration name. | ||
10 | -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) | ||
11 | - if(BUILD_TYPE) | ||
12 | - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" | ||
13 | - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") | ||
14 | - else() | ||
15 | - set(CMAKE_INSTALL_CONFIG_NAME "") | ||
16 | - endif() | ||
17 | - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") | ||
18 | -endif() | ||
19 | - | ||
20 | -# Set the component getting installed. | ||
21 | -if(NOT CMAKE_INSTALL_COMPONENT) | ||
22 | - if(COMPONENT) | ||
23 | - message(STATUS "Install component: \"${COMPONENT}\"") | ||
24 | - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") | ||
25 | - else() | ||
26 | - set(CMAKE_INSTALL_COMPONENT) | ||
27 | - endif() | ||
28 | -endif() | ||
29 | - | ||
30 | -# Install shared libraries without execute permission? | ||
31 | -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) | ||
32 | - set(CMAKE_INSTALL_SO_NO_EXE "1") | ||
33 | -endif() | ||
34 | - | ||
35 | -if(CMAKE_INSTALL_COMPONENT) | ||
36 | - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") | ||
37 | -else() | ||
38 | - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") | ||
39 | -endif() | ||
40 | - | ||
41 | -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT | ||
42 | - "${CMAKE_INSTALL_MANIFEST_FILES}") | ||
43 | -file(WRITE "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/${CMAKE_INSTALL_MANIFEST}" | ||
44 | - "${CMAKE_INSTALL_MANIFEST_CONTENT}") |
@@ -36,8 +36,8 @@ | @@ -36,8 +36,8 @@ | ||
36 | #include "dji_high_speed_data_channel.h" | 36 | #include "dji_high_speed_data_channel.h" |
37 | #include "dji_aircraft_info.h" | 37 | #include "dji_aircraft_info.h" |
38 | 38 | ||
39 | -#include "Dji_Control/DJI_VideoDeal.h" | ||
40 | #include <pthread.h> | 39 | #include <pthread.h> |
40 | +#include "DJI_Expansion.h" | ||
41 | 41 | ||
42 | /* Private constants ---------------------------------------------------------*/ | 42 | /* Private constants ---------------------------------------------------------*/ |
43 | #define FFMPEG_CMD_BUF_SIZE (256 + 256) | 43 | #define FFMPEG_CMD_BUF_SIZE (256 + 256) |
@@ -1094,7 +1094,7 @@ static T_DjiReturnCode DjiTestWidget_GetWidgetValue(E_DjiWidgetType widgetType, | @@ -1094,7 +1094,7 @@ static T_DjiReturnCode DjiTestWidget_GetWidgetValue(E_DjiWidgetType widgetType, | ||
1094 | 1094 | ||
1095 | /****************** (C) COPYRIGHT DJI Innovations *****END OF FILE****/ | 1095 | /****************** (C) COPYRIGHT DJI Innovations *****END OF FILE****/ |
1096 | 1096 | ||
1097 | -void set_wideget_value(int index,int value) | 1097 | +T_JZsdkReturnCode set_wideget_value(int index,int value) |
1098 | { | 1098 | { |
1099 | s_widgetValueList[index]=value; | 1099 | s_widgetValueList[index]=value; |
1100 | 1100 |
@@ -29,6 +29,7 @@ | @@ -29,6 +29,7 @@ | ||
29 | 29 | ||
30 | /* Includes ------------------------------------------------------------------*/ | 30 | /* Includes ------------------------------------------------------------------*/ |
31 | #include <dji_typedef.h> | 31 | #include <dji_typedef.h> |
32 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
32 | 33 | ||
33 | #ifdef __cplusplus | 34 | #ifdef __cplusplus |
34 | extern "C" { | 35 | extern "C" { |
@@ -44,7 +45,7 @@ T_DjiReturnCode DjiTest_WidgetSetConfigFilePath(const char *path); | @@ -44,7 +45,7 @@ T_DjiReturnCode DjiTest_WidgetSetConfigFilePath(const char *path); | ||
44 | __attribute__((weak)) void DjiTest_WidgetLogAppend(const char *fmt, ...); | 45 | __attribute__((weak)) void DjiTest_WidgetLogAppend(const char *fmt, ...); |
45 | int Get_Opus_PlayMode(); | 46 | int Get_Opus_PlayMode(); |
46 | int get_num(char *str); | 47 | int get_num(char *str); |
47 | -void set_wideget_value(int index,int value); | 48 | +T_JZsdkReturnCode set_wideget_value(int index,int value); |
48 | int Set_Widget_SearchLightTemp(int LeftTemperature, int RightTemperature); | 49 | int Set_Widget_SearchLightTemp(int LeftTemperature, int RightTemperature); |
49 | 50 | ||
50 | #ifdef __cplusplus | 51 | #ifdef __cplusplus |
@@ -933,19 +933,19 @@ static void *DjiTest_WidgetSpeakerTask(void *arg) | @@ -933,19 +933,19 @@ static void *DjiTest_WidgetSpeakerTask(void *arg) | ||
933 | */ | 933 | */ |
934 | 934 | ||
935 | //播放状态 | 935 | //播放状态 |
936 | -int Speaker_Set_SpeakerState_state(int value) | 936 | +T_JZsdkReturnCode Speaker_Set_SpeakerState_state(int value) |
937 | { | 937 | { |
938 | s_speakerState.state = value; | 938 | s_speakerState.state = value; |
939 | } | 939 | } |
940 | 940 | ||
941 | //循环模式 | 941 | //循环模式 |
942 | -int Speaker_Set_SpeakerPlaymode(int value) | 942 | +T_JZsdkReturnCode Speaker_Set_SpeakerPlaymode(int value) |
943 | { | 943 | { |
944 | s_speakerState.playMode = value; | 944 | s_speakerState.playMode = value; |
945 | } | 945 | } |
946 | 946 | ||
947 | //音量 | 947 | //音量 |
948 | -int Speaker_Set_SpeakerVolume(int value) | 948 | +T_JZsdkReturnCode Speaker_Set_SpeakerVolume(int value) |
949 | { | 949 | { |
950 | s_speakerState.volume = value; | 950 | s_speakerState.volume = value; |
951 | } | 951 | } |
@@ -29,6 +29,7 @@ | @@ -29,6 +29,7 @@ | ||
29 | 29 | ||
30 | /* Includes ------------------------------------------------------------------*/ | 30 | /* Includes ------------------------------------------------------------------*/ |
31 | #include "dji_widget.h" | 31 | #include "dji_widget.h" |
32 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
32 | 33 | ||
33 | #ifdef __cplusplus | 34 | #ifdef __cplusplus |
34 | extern "C" { | 35 | extern "C" { |
@@ -37,9 +38,9 @@ extern "C" { | @@ -37,9 +38,9 @@ extern "C" { | ||
37 | 38 | ||
38 | /* Exported constants --------------------------------------------------------*/ | 39 | /* Exported constants --------------------------------------------------------*/ |
39 | T_DjiReturnCode DjiTest_WidgetSpeakerStartService(void); | 40 | T_DjiReturnCode DjiTest_WidgetSpeakerStartService(void); |
40 | -int Speaker_Set_SpeakerState_state(int value); | ||
41 | -int Speaker_Set_SpeakerPlaymode(int value); | ||
42 | -int Speaker_Set_SpeakerVolume(int value); | 41 | +T_JZsdkReturnCode Speaker_Set_SpeakerState_state(int value); |
42 | +T_JZsdkReturnCode Speaker_Set_SpeakerPlaymode(int value); | ||
43 | +T_JZsdkReturnCode Speaker_Set_SpeakerVolume(int value); | ||
43 | /* Exported types ------------------------------------------------------------*/ | 44 | /* Exported types ------------------------------------------------------------*/ |
44 | 45 | ||
45 | /* Exported functions --------------------------------------------------------*/ | 46 | /* Exported functions --------------------------------------------------------*/ |
1 | # cmake 最低版本要求 第三行名字不能动 | 1 | # cmake 最低版本要求 第三行名字不能动 |
2 | cmake_minimum_required(VERSION 2.8) | 2 | cmake_minimum_required(VERSION 2.8) |
3 | -project(JZ_U3D) | 3 | +project(JZ_H1E) |
4 | 4 | ||
5 | #set(CMAKE_C_FLAGS "-pthread -std=gnu99 -lm -ldl -lstdc++") | 5 | #set(CMAKE_C_FLAGS "-pthread -std=gnu99 -lm -ldl -lstdc++") |
6 | #"-pthread":指定在编译时链接POSIX线程库,以支持多线程程序。 | 6 | #"-pthread":指定在编译时链接POSIX线程库,以支持多线程程序。 |
@@ -56,7 +56,7 @@ file(GLOB_RECURSE MODULE_COMMON_SRC ../common/*.c) #系统文件 MODULE_COMM | @@ -56,7 +56,7 @@ file(GLOB_RECURSE MODULE_COMMON_SRC ../common/*.c) #系统文件 MODULE_COMM | ||
56 | file(GLOB_RECURSE MODULE_HAL_SRC hal/*.c) #网络串口usb文件 MODULE_HAL_SRC | 56 | file(GLOB_RECURSE MODULE_HAL_SRC hal/*.c) #网络串口usb文件 MODULE_HAL_SRC |
57 | file(GLOB_RECURSE MODULE_APP_SRC application/*.c) #main MODULE_APP_SRC | 57 | file(GLOB_RECURSE MODULE_APP_SRC application/*.c) #main MODULE_APP_SRC |
58 | file(GLOB_RECURSE MODULE_SAMPLE_SRC ../../../module_sample/*.c) #基础功能文件 MODULE_SAMPLE_SRC | 58 | file(GLOB_RECURSE MODULE_SAMPLE_SRC ../../../module_sample/*.c) #基础功能文件 MODULE_SAMPLE_SRC |
59 | -file(GLOB_RECURSE MODULE_JZSDK_PSDK_EXPANSION_SRC JZsdk_PsdkExpansion/*.c) #接口文件 | 59 | +file(GLOB_RECURSE MODULE_JZSDK_PSDK_EXPANSION_SRC DJI_Expansion/*.c) #接口文件 |
60 | 60 | ||
61 | 61 | ||
62 | # psdk额外加载的.h文件 | 62 | # psdk额外加载的.h文件 |
@@ -64,7 +64,7 @@ include_directories(./application) | @@ -64,7 +64,7 @@ include_directories(./application) | ||
64 | include_directories(../../../module_sample) | 64 | include_directories(../../../module_sample) |
65 | include_directories(../common) | 65 | include_directories(../common) |
66 | include_directories(../../../../../psdk_lib/include) #PSDK头文件 | 66 | include_directories(../../../../../psdk_lib/include) #PSDK头文件 |
67 | -include_directories(./JZsdk_PsdkExpansion) | 67 | +include_directories(./DJI_Expansion) |
68 | 68 | ||
69 | 69 | ||
70 | # 加载jzsdk的头文件 ***************************************************** | 70 | # 加载jzsdk的头文件 ***************************************************** |
@@ -26,6 +26,7 @@ extern "C" { | @@ -26,6 +26,7 @@ extern "C" { | ||
26 | /* Exported functions --------------------------------------------------------*/ | 26 | /* Exported functions --------------------------------------------------------*/ |
27 | T_JZsdkReturnCode JZsdk_Expansion_low_data_tran(unsigned char *data ,int len); | 27 | T_JZsdkReturnCode JZsdk_Expansion_low_data_tran(unsigned char *data ,int len); |
28 | T_JZsdkReturnCode DJI_JZsdkToPsdk_ExpnasionInit(); | 28 | T_JZsdkReturnCode DJI_JZsdkToPsdk_ExpnasionInit(); |
29 | +int DJI_VideoReplay_input(int command, unsigned int Command_timeMS, char* path); | ||
29 | 30 | ||
30 | #ifdef __cplusplus | 31 | #ifdef __cplusplus |
31 | } | 32 | } |
@@ -65,7 +65,7 @@ | @@ -65,7 +65,7 @@ | ||
65 | #include "Psdk_UI_io.h" | 65 | #include "Psdk_UI_io.h" |
66 | #include "DeviceInfo/DeviceInfo.h" | 66 | #include "DeviceInfo/DeviceInfo.h" |
67 | #include "CommonMod/PowerManger/PowerManger.h" | 67 | #include "CommonMod/PowerManger/PowerManger.h" |
68 | -#include "DJI_Expansion/DJI_Expansion.h" | 68 | +#include "DJI_Expansion.h" |
69 | 69 | ||
70 | #ifdef AUDIODEAL_CONFIG_STATUS_ON | 70 | #ifdef AUDIODEAL_CONFIG_STATUS_ON |
71 | #include "AudioDeal/AudioDeal.h" | 71 | #include "AudioDeal/AudioDeal.h" |
@@ -31,6 +31,16 @@ | @@ -31,6 +31,16 @@ | ||
31 | #include <stdio.h> | 31 | #include <stdio.h> |
32 | #include "file_binary_array_list_en.h" | 32 | #include "file_binary_array_list_en.h" |
33 | 33 | ||
34 | + | ||
35 | +#include "JZsdkLib.h" | ||
36 | +#include "BaseConfig.h" | ||
37 | +#include "version_choose.h" | ||
38 | + | ||
39 | +#include "Psdk_UI_io.h" | ||
40 | +#include "UI_control/WidegMgmt/JZsdk_Widget.h" | ||
41 | + | ||
42 | + | ||
43 | + | ||
34 | /* Private constants ---------------------------------------------------------*/ | 44 | /* Private constants ---------------------------------------------------------*/ |
35 | #define WIDGET_DIR_PATH_LEN_MAX (256) | 45 | #define WIDGET_DIR_PATH_LEN_MAX (256) |
36 | #define WIDGET_TASK_STACK_SIZE (2048) | 46 | #define WIDGET_TASK_STACK_SIZE (2048) |
@@ -49,6 +59,58 @@ static T_ZiyanTaskHandle s_widgetTestThread; | @@ -49,6 +59,58 @@ static T_ZiyanTaskHandle s_widgetTestThread; | ||
49 | static bool s_isWidgetFileDirPathConfigured = false; | 59 | static bool s_isWidgetFileDirPathConfigured = false; |
50 | static char s_widgetFileDirPath[ZIYAN_FILE_PATH_SIZE_MAX] = {0}; | 60 | static char s_widgetFileDirPath[ZIYAN_FILE_PATH_SIZE_MAX] = {0}; |
51 | 61 | ||
62 | + | ||
63 | +#ifdef MEGAPHONE_CONFIG_STATUS_ON | ||
64 | + | ||
65 | +static const T_ZiyanWidgetHandlerListItem s_widgetHandlerList[] = { | ||
66 | + //喊话器部分 | ||
67 | + {0, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//上一曲 | ||
68 | + {1, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//下一曲 | ||
69 | + {2, ZIYAN_WIDGET_TYPE_SWITCH, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//播放/暂停 | ||
70 | + {3, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//内音量 | ||
71 | + {4, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//外音量 | ||
72 | + {5, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//TTS语速 | ||
73 | + {6, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//TTS音色 | ||
74 | + {7, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//追加音色 | ||
75 | + {8, ZIYAN_WIDGET_TYPE_SWITCH, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//循环开关 | ||
76 | + {9, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//实时喊话 | ||
77 | + //探照灯部分 | ||
78 | + {10, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//内ui灯亮度 | ||
79 | + {11, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//外ui灯亮度 | ||
80 | + {12, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//探照灯模式 | ||
81 | + {13, ZIYAN_WIDGET_TYPE_SWITCH, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//是否开启爆闪(已合并到12) | ||
82 | + {14, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//爆闪频率 | ||
83 | + {15, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//激光开关 | ||
84 | + //警灯部分 | ||
85 | + {16, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//警灯模式 | ||
86 | + {17, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//警灯眼色1 | ||
87 | + {18, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//警灯眼色2 | ||
88 | + //云台部分 | ||
89 | + {19, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//内ui云台滑动条 | ||
90 | + {20, ZIYAN_WIDGET_TYPE_SCALE, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//外ui云台外部滑动条 | ||
91 | + {21, ZIYAN_WIDGET_TYPE_SWITCH, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//云台联动开关 | ||
92 | + {22, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//云台向上微调 | ||
93 | + {23, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//云台向下微调 | ||
94 | + //系统部分 | ||
95 | + {24, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//版本号 | ||
96 | + {25, ZIYAN_WIDGET_TYPE_SWITCH, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//对外供电开关 | ||
97 | + | ||
98 | + //测试固件 | ||
99 | + {26, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//设置云台最大值 | ||
100 | + {27, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//设置云台最小值 | ||
101 | + {28, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL},//设置滤波输入值 | ||
102 | +}; | ||
103 | + | ||
104 | +static const uint32_t s_widgetHandlerListCount = sizeof(s_widgetHandlerList) / sizeof(T_DjiWidgetHandlerListItem); | ||
105 | +int32_t s_widgetValueList[29] = { OFF, OFF, PLAY_PAUSE, 30, 30, PLAY_SPEED_X1, 0, OFF,OFF,OFF, //喊话器部分 | ||
106 | + OFF, OFF, OFF, OFF, 50, OFF, //探照灯部分 | ||
107 | + 0, 0, 2, //警灯部分 | ||
108 | + 100, 100 ,ON ,OFF,OFF, //云台部分 | ||
109 | + OFF ,OFF, //系统部分 | ||
110 | + OFF,OFF,0}; //调试部分 | ||
111 | + | ||
112 | +#else | ||
113 | + | ||
52 | static const T_ZiyanWidgetHandlerListItem s_widgetHandlerList[] = { | 114 | static const T_ZiyanWidgetHandlerListItem s_widgetHandlerList[] = { |
53 | {0, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL}, | 115 | {0, ZIYAN_WIDGET_TYPE_BUTTON, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL}, |
54 | {1, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL}, | 116 | {1, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL}, |
@@ -61,6 +123,10 @@ static const T_ZiyanWidgetHandlerListItem s_widgetHandlerList[] = { | @@ -61,6 +123,10 @@ static const T_ZiyanWidgetHandlerListItem s_widgetHandlerList[] = { | ||
61 | {8, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL}, | 123 | {8, ZIYAN_WIDGET_TYPE_LIST, ZiyanTestWidget_SetWidgetValue, ZiyanTestWidget_GetWidgetValue, NULL}, |
62 | }; | 124 | }; |
63 | 125 | ||
126 | +#endif | ||
127 | + | ||
128 | + | ||
129 | + | ||
64 | static const char *s_widgetTypeNameArray[] = { | 130 | static const char *s_widgetTypeNameArray[] = { |
65 | "Unknown", | 131 | "Unknown", |
66 | "Button", | 132 | "Button", |
@@ -236,96 +302,99 @@ static T_ZiyanReturnCode ZiyanTestWidget_SetWidgetValue(E_ZiyanWidgetType widget | @@ -236,96 +302,99 @@ static T_ZiyanReturnCode ZiyanTestWidget_SetWidgetValue(E_ZiyanWidgetType widget | ||
236 | s_widgetTypeNameArray[widgetType], index, value); | 302 | s_widgetTypeNameArray[widgetType], index, value); |
237 | s_widgetValueList[index] = value; | 303 | s_widgetValueList[index] = value; |
238 | 304 | ||
239 | - if(index == 0){ | ||
240 | - uint8_t brightness = value; | ||
241 | - brightness = (brightness == 0) ? 30 : brightness; | ||
242 | - brightness = (brightness == 1) ? 255 : brightness; | ||
243 | - | ||
244 | - FILE *fp; | ||
245 | - const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
246 | - | ||
247 | - fp = fopen(brightness_file, "w"); | ||
248 | - if (fp == NULL) { | ||
249 | - perror("Error opening brightness file"); | ||
250 | - return -1; | ||
251 | - } | ||
252 | - | ||
253 | - fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
254 | - fclose(fp); | ||
255 | - } | ||
256 | - | ||
257 | - if(index == 1){ | ||
258 | - uint8_t brightness = value; | ||
259 | - brightness = (brightness == 0) ? 30 : brightness; | ||
260 | - brightness = (brightness == 1) ? 140 : brightness; | ||
261 | - brightness = (brightness == 2) ? 255 : brightness; | ||
262 | - | ||
263 | - FILE *fp; | ||
264 | - const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
265 | - | ||
266 | - fp = fopen(brightness_file, "w"); | ||
267 | - if (fp == NULL) { | ||
268 | - perror("Error opening brightness file"); | ||
269 | - return -1; | ||
270 | - } | ||
271 | - | ||
272 | - fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
273 | - fclose(fp); | ||
274 | - } | ||
275 | - | ||
276 | - if(index == 2){ | ||
277 | - uint8_t brightness = value; | ||
278 | - brightness = (brightness == 0) ? 30 : brightness; | ||
279 | - brightness = (brightness == 1) ? 255 : brightness; | ||
280 | - | ||
281 | - FILE *fp; | ||
282 | - const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
283 | - | ||
284 | - fp = fopen(brightness_file, "w"); | ||
285 | - if (fp == NULL) { | ||
286 | - perror("Error opening brightness file"); | ||
287 | - return -1; | ||
288 | - } | ||
289 | - | ||
290 | - fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
291 | - fclose(fp); | ||
292 | - } | ||
293 | - | ||
294 | - if(index == 3){ | ||
295 | - uint8_t brightness = value; | ||
296 | - brightness = (brightness < 30) ? 30 : brightness; | ||
297 | - brightness = (brightness > 255) ? 255 : brightness; | ||
298 | - | ||
299 | - FILE *fp; | ||
300 | - const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
301 | - | ||
302 | - fp = fopen(brightness_file, "w"); | ||
303 | - if (fp == NULL) { | ||
304 | - perror("Error opening brightness file"); | ||
305 | - return -1; | ||
306 | - } | ||
307 | - | ||
308 | - fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
309 | - fclose(fp); | ||
310 | - } | ||
311 | - | ||
312 | - if(index == 6){ | ||
313 | - uint8_t brightness = value; | ||
314 | - brightness = (brightness < 30) ? 30 : brightness; | ||
315 | - brightness = (brightness > 255) ? 255 : brightness; | ||
316 | - | ||
317 | - FILE *fp; | ||
318 | - const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
319 | - | ||
320 | - fp = fopen(brightness_file, "w"); | ||
321 | - if (fp == NULL) { | ||
322 | - perror("Error opening brightness file"); | ||
323 | - return -1; | ||
324 | - } | ||
325 | - | ||
326 | - fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
327 | - fclose(fp); | ||
328 | - } | 305 | + JZSDK_LOG_INFO("Set widget value, widgetType = %s, widgetIndex = %d ,widgetValue = %d"); |
306 | + | ||
307 | + // if(index == 0){ | ||
308 | + // uint8_t brightness = value; | ||
309 | + // brightness = (brightness == 0) ? 30 : brightness; | ||
310 | + // brightness = (brightness == 1) ? 255 : brightness; | ||
311 | + | ||
312 | + // FILE *fp; | ||
313 | + // const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
314 | + | ||
315 | + // fp = fopen(brightness_file, "w"); | ||
316 | + // if (fp == NULL) { | ||
317 | + // perror("Error opening brightness file"); | ||
318 | + // return -1; | ||
319 | + // } | ||
320 | + | ||
321 | + // fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
322 | + // fclose(fp); | ||
323 | + | ||
324 | + // } | ||
325 | + | ||
326 | + // if(index == 1){ | ||
327 | + // uint8_t brightness = value; | ||
328 | + // brightness = (brightness == 0) ? 30 : brightness; | ||
329 | + // brightness = (brightness == 1) ? 140 : brightness; | ||
330 | + // brightness = (brightness == 2) ? 255 : brightness; | ||
331 | + | ||
332 | + // FILE *fp; | ||
333 | + // const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
334 | + | ||
335 | + // fp = fopen(brightness_file, "w"); | ||
336 | + // if (fp == NULL) { | ||
337 | + // perror("Error opening brightness file"); | ||
338 | + // return -1; | ||
339 | + // } | ||
340 | + | ||
341 | + // fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
342 | + // fclose(fp); | ||
343 | + // } | ||
344 | + | ||
345 | + // if(index == 2){ | ||
346 | + // uint8_t brightness = value; | ||
347 | + // brightness = (brightness == 0) ? 30 : brightness; | ||
348 | + // brightness = (brightness == 1) ? 255 : brightness; | ||
349 | + | ||
350 | + // FILE *fp; | ||
351 | + // const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
352 | + | ||
353 | + // fp = fopen(brightness_file, "w"); | ||
354 | + // if (fp == NULL) { | ||
355 | + // perror("Error opening brightness file"); | ||
356 | + // return -1; | ||
357 | + // } | ||
358 | + | ||
359 | + // fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
360 | + // fclose(fp); | ||
361 | + // } | ||
362 | + | ||
363 | + // if(index == 3){ | ||
364 | + // uint8_t brightness = value; | ||
365 | + // brightness = (brightness < 30) ? 30 : brightness; | ||
366 | + // brightness = (brightness > 255) ? 255 : brightness; | ||
367 | + | ||
368 | + // FILE *fp; | ||
369 | + // const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
370 | + | ||
371 | + // fp = fopen(brightness_file, "w"); | ||
372 | + // if (fp == NULL) { | ||
373 | + // perror("Error opening brightness file"); | ||
374 | + // return -1; | ||
375 | + // } | ||
376 | + | ||
377 | + // fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
378 | + // fclose(fp); | ||
379 | + // } | ||
380 | + | ||
381 | + // if(index == 6){ | ||
382 | + // uint8_t brightness = value; | ||
383 | + // brightness = (brightness < 30) ? 30 : brightness; | ||
384 | + // brightness = (brightness > 255) ? 255 : brightness; | ||
385 | + | ||
386 | + // FILE *fp; | ||
387 | + // const char *brightness_file = "/sys/class/backlight/amdgpu_bl1/brightness"; // 根据你的系统路径调整 | ||
388 | + | ||
389 | + // fp = fopen(brightness_file, "w"); | ||
390 | + // if (fp == NULL) { | ||
391 | + // perror("Error opening brightness file"); | ||
392 | + // return -1; | ||
393 | + // } | ||
394 | + | ||
395 | + // fprintf(fp, "%d", brightness); // 写入新的亮度值 | ||
396 | + // fclose(fp); | ||
397 | + // } | ||
329 | 398 | ||
330 | return ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 399 | return ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
331 | } | 400 | } |
@@ -33,6 +33,8 @@ | @@ -33,6 +33,8 @@ | ||
33 | #include "utils/util_md5.h" | 33 | #include "utils/util_md5.h" |
34 | #include <ziyan_aircraft_info.h> | 34 | #include <ziyan_aircraft_info.h> |
35 | 35 | ||
36 | +#include "JZsdkLib.h" | ||
37 | + | ||
36 | #ifdef OPUS_INSTALLED | 38 | #ifdef OPUS_INSTALLED |
37 | 39 | ||
38 | #include <opus/opus.h> | 40 | #include <opus/opus.h> |
@@ -668,24 +670,27 @@ static T_ZiyanReturnCode SetVolume(uint8_t volume) | @@ -668,24 +670,27 @@ static T_ZiyanReturnCode SetVolume(uint8_t volume) | ||
668 | 670 | ||
669 | USER_LOG_INFO("Set widget speaker volume: %d", volume); | 671 | USER_LOG_INFO("Set widget speaker volume: %d", volume); |
670 | 672 | ||
671 | -#ifdef PLATFORM_ARCH_x86_64 | ||
672 | - snprintf(cmdStr, sizeof(cmdStr), "pactl list | grep %s -q", WIDGET_SPEAKER_USB_AUDIO_DEVICE_NAME); | ||
673 | - ret = system(cmdStr); | ||
674 | - if (ret == ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS) { | ||
675 | - memset(cmdStr, 0, sizeof(cmdStr)); | ||
676 | - snprintf(cmdStr, sizeof(cmdStr), "pactl set-sink-volume %s %d%%", WIDGET_SPEAKER_USB_AUDIO_DEVICE_NAME, | ||
677 | - (int32_t) realVolume); | ||
678 | - | ||
679 | - returnCode = ZiyanUserUtil_RunSystemCmd(cmdStr); | ||
680 | - if (returnCode != ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS) { | ||
681 | - USER_LOG_ERROR("Set widget speaker volume error: %d", ret); | ||
682 | - } | ||
683 | - } else { | ||
684 | - USER_LOG_WARN("No audio device found, please add audio device and init speaker volume here."); | ||
685 | - } | ||
686 | -#else | ||
687 | - USER_LOG_WARN("No audio device found, please add audio device and init speaker volume here!!!"); | ||
688 | -#endif | 673 | + //将音量接口修改 |
674 | + | ||
675 | + | ||
676 | +// #ifdef PLATFORM_ARCH_x86_64 | ||
677 | +// snprintf(cmdStr, sizeof(cmdStr), "pactl list | grep %s -q", WIDGET_SPEAKER_USB_AUDIO_DEVICE_NAME); | ||
678 | +// ret = system(cmdStr); | ||
679 | +// if (ret == ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS) { | ||
680 | +// memset(cmdStr, 0, sizeof(cmdStr)); | ||
681 | +// snprintf(cmdStr, sizeof(cmdStr), "pactl set-sink-volume %s %d%%", WIDGET_SPEAKER_USB_AUDIO_DEVICE_NAME, | ||
682 | +// (int32_t) realVolume); | ||
683 | + | ||
684 | +// returnCode = ZiyanUserUtil_RunSystemCmd(cmdStr); | ||
685 | +// if (returnCode != ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS) { | ||
686 | +// USER_LOG_ERROR("Set widget speaker volume error: %d", ret); | ||
687 | +// } | ||
688 | +// } else { | ||
689 | +// USER_LOG_WARN("No audio device found, please add audio device and init speaker volume here."); | ||
690 | +// } | ||
691 | +// #else | ||
692 | +// USER_LOG_WARN("No audio device found, please add audio device and init speaker volume here!!!"); | ||
693 | +// #endif | ||
689 | 694 | ||
690 | returnCode = osalHandler->MutexUnlock(s_speakerMutex); | 695 | returnCode = osalHandler->MutexUnlock(s_speakerMutex); |
691 | if (returnCode != ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS) { | 696 | if (returnCode != ZIYAN_ERROR_SYSTEM_MODULE_CODE_SUCCESS) { |
@@ -85,13 +85,6 @@ link_directories(../../../../../psdk_lib/lib/${TOOLCHAIN_NAME}) # PSDK库目录 | @@ -85,13 +85,6 @@ link_directories(../../../../../psdk_lib/lib/${TOOLCHAIN_NAME}) # PSDK库目录 | ||
85 | # 加载jzsdk的头文件 ***************************************************** | 85 | # 加载jzsdk的头文件 ***************************************************** |
86 | include_directories(${ALL_INC_FILES}) | 86 | include_directories(${ALL_INC_FILES}) |
87 | 87 | ||
88 | - | ||
89 | - | ||
90 | -# 设置可执行文件输出路径(默认到构建目录的bin子目录) | ||
91 | -if (NOT EXECUTABLE_OUTPUT_PATH) | ||
92 | - set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) | ||
93 | -endif () | ||
94 | - | ||
95 | # 创建可执行目标,包含所有收集的源代码 | 88 | # 创建可执行目标,包含所有收集的源代码 |
96 | add_executable(${PROJECT_NAME} | 89 | add_executable(${PROJECT_NAME} |
97 | ${MODULE_APP_SRC} | 90 | ${MODULE_APP_SRC} |
@@ -44,6 +44,7 @@ | @@ -44,6 +44,7 @@ | ||
44 | #include "camera_emu/test_payload_cam_emu_base.h" | 44 | #include "camera_emu/test_payload_cam_emu_base.h" |
45 | 45 | ||
46 | #include "Zy_Expansion.h" | 46 | #include "Zy_Expansion.h" |
47 | +#include "BaseConfig.h" | ||
47 | 48 | ||
48 | /* Private constants ---------------------------------------------------------*/ | 49 | /* Private constants ---------------------------------------------------------*/ |
49 | #define ZIYAN_LOG_PATH "Logs/ZIYAN" | 50 | #define ZIYAN_LOG_PATH "Logs/ZIYAN" |
@@ -40,7 +40,7 @@ extern "C" { | @@ -40,7 +40,7 @@ extern "C" { | ||
40 | #define USER_APP_KEY "app_key_ziyan" | 40 | #define USER_APP_KEY "app_key_ziyan" |
41 | #define USER_APP_LICENSE "app_license_ziyan" | 41 | #define USER_APP_LICENSE "app_license_ziyan" |
42 | #define USER_DEVELOPER_ACCOUNT "developer_account_ziyan" | 42 | #define USER_DEVELOPER_ACCOUNT "developer_account_ziyan" |
43 | -#define USER_BAUD_RATE "921600" | 43 | +#define USER_BAUD_RATE "921600" //原为921600 |
44 | 44 | ||
45 | /* Exported types ------------------------------------------------------------*/ | 45 | /* Exported types ------------------------------------------------------------*/ |
46 | 46 |
@@ -40,17 +40,17 @@ extern "C" { | @@ -40,17 +40,17 @@ extern "C" { | ||
40 | 40 | ||
41 | /*!< Attention: Select your hardware connection mode here. | 41 | /*!< Attention: Select your hardware connection mode here. |
42 | * */ | 42 | * */ |
43 | -#define CONFIG_HARDWARE_CONNECTION ZIYAN_USE_UART_AND_NETWORK_DEVICE | 43 | +#define CONFIG_HARDWARE_CONNECTION ZIYAN_USE_ONLY_UART |
44 | 44 | ||
45 | /*!< Attention: Select the sample you want to run here. | 45 | /*!< Attention: Select the sample you want to run here. |
46 | * */ | 46 | * */ |
47 | // #define CONFIG_MODULE_SAMPLE_POWER_MANAGEMENT_ON | 47 | // #define CONFIG_MODULE_SAMPLE_POWER_MANAGEMENT_ON |
48 | 48 | ||
49 | -#define CONFIG_MODULE_SAMPLE_CAMERA_EMU_ON | 49 | +// #define CONFIG_MODULE_SAMPLE_CAMERA_EMU_ON |
50 | 50 | ||
51 | -#define CONFIG_MODULE_SAMPLE_CAMERA_MEDIA_ON | 51 | +// #define CONFIG_MODULE_SAMPLE_CAMERA_MEDIA_ON |
52 | 52 | ||
53 | -#define CONFIG_MODULE_SAMPLE_GIMBAL_EMU_ON | 53 | +// #define CONFIG_MODULE_SAMPLE_GIMBAL_EMU_ON |
54 | 54 | ||
55 | // #define CONFIG_MODULE_SAMPLE_XPORT_ON | 55 | // #define CONFIG_MODULE_SAMPLE_XPORT_ON |
56 | 56 |
@@ -39,13 +39,15 @@ | @@ -39,13 +39,15 @@ | ||
39 | 39 | ||
40 | #include "ziyan_platform.h" | 40 | #include "ziyan_platform.h" |
41 | 41 | ||
42 | +#include "BaseConfig.h" | ||
43 | + | ||
42 | #ifdef __cplusplus | 44 | #ifdef __cplusplus |
43 | extern "C" { | 45 | extern "C" { |
44 | #endif | 46 | #endif |
45 | 47 | ||
46 | /* Exported constants --------------------------------------------------------*/ | 48 | /* Exported constants --------------------------------------------------------*/ |
47 | //User can config dev based on there environmental conditions | 49 | //User can config dev based on there environmental conditions |
48 | -#define LINUX_UART_DEV1 "/dev/ttyUSB0" | 50 | +#define LINUX_UART_DEV1 UART_DEV1_NUM |
49 | #define LINUX_UART_DEV2 "/dev/ttyACM0" | 51 | #define LINUX_UART_DEV2 "/dev/ttyACM0" |
50 | 52 | ||
51 | /* Exported types ------------------------------------------------------------*/ | 53 | /* Exported types ------------------------------------------------------------*/ |
-
请 注册 或 登录 后发表评论