mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
中文
This commit is contained in:
parent
e30873d028
commit
de00942f3b
35 changed files with 222 additions and 2577 deletions
2
Makefile
2
Makefile
|
@ -24,7 +24,7 @@ ENABLE_FLASHLIGHT ?= 1
|
||||||
|
|
||||||
# ---- CUSTOM MODS ----
|
# ---- CUSTOM MODS ----
|
||||||
ENABLE_BIG_FREQ ?= 1
|
ENABLE_BIG_FREQ ?= 1
|
||||||
ENABLE_SMALL_BOLD ?= 1
|
ENABLE_SMALL_BOLD ?= 0
|
||||||
ENABLE_KEEP_MEM_NAME ?= 1
|
ENABLE_KEEP_MEM_NAME ?= 1
|
||||||
ENABLE_WIDE_RX ?= 1
|
ENABLE_WIDE_RX ?= 1
|
||||||
ENABLE_TX_WHEN_AM ?= 0
|
ENABLE_TX_WHEN_AM ?= 0
|
||||||
|
|
|
@ -74,9 +74,6 @@ void EEPROM_WriteBuffer(uint32_t Address, const void *pBuffer) {
|
||||||
SYSTEM_DelayMs(8);
|
SYSTEM_DelayMs(8);
|
||||||
|
|
||||||
// give the EEPROM time to burn the data in (apparently takes 5ms)
|
// give the EEPROM time to burn the data in (apparently takes 5ms)
|
||||||
} else {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
55
main.c
55
main.c
|
@ -136,30 +136,6 @@ void Main(void) {
|
||||||
p_font=gFontChinese_out3;
|
p_font=gFontChinese_out3;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// WRITE_SIZE = 128;
|
|
||||||
// uint32_t add=0;
|
|
||||||
// EEPROM_WriteBuffer_1024(start_add + add, gFontChinese_out2+add, WRITE_SIZE);
|
|
||||||
// uint8_t B[128];
|
|
||||||
// EEPROM_ReadBuffer(start_add + add, B, 128);
|
|
||||||
// if (memcmp(B, gFontChinese_out2+add, 128) != 0) {
|
|
||||||
//
|
|
||||||
// UI_PrintStringSmall("FAILED!", 0, 127, 4);
|
|
||||||
//
|
|
||||||
// ST7565_BlitStatusLine(); // blank status line
|
|
||||||
// ST7565_BlitFullScreen();
|
|
||||||
// UART_Send("FAILED!\n", 7);
|
|
||||||
// UART_Send(B, 128);
|
|
||||||
// while (1);
|
|
||||||
// }else
|
|
||||||
// {
|
|
||||||
// UI_PrintStringSmall("OK", 0, 127, 3);
|
|
||||||
//
|
|
||||||
// ST7565_BlitStatusLine(); // blank status line
|
|
||||||
// ST7565_BlitFullScreen();
|
|
||||||
// UART_Send("OK!\n", 7);
|
|
||||||
// UART_Send(B, 128);
|
|
||||||
// while (1);
|
|
||||||
// }
|
|
||||||
for (uint32_t i = 0; i < ALL_SIZE; i += 128) {
|
for (uint32_t i = 0; i < ALL_SIZE; i += 128) {
|
||||||
if (i != (uint32_t) (ALL_SIZE / 128) * 128) {
|
if (i != (uint32_t) (ALL_SIZE / 128) * 128) {
|
||||||
WRITE_SIZE = 128;
|
WRITE_SIZE = 128;
|
||||||
|
@ -373,17 +349,38 @@ void Main(void) {
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
RADIO_ConfigureNOAA();
|
RADIO_ConfigureNOAA();
|
||||||
#endif
|
#endif
|
||||||
|
// int start_add=0x1E32C;
|
||||||
|
// WRITE_SIZE = 8;
|
||||||
|
// uint32_t add=0;
|
||||||
|
// uint8_t data_write[8];
|
||||||
|
// memset(data_write,'Z',sizeof (data_write));
|
||||||
|
// EEPROM_WriteBuffer_1024(start_add + add,data_write , WRITE_SIZE);
|
||||||
|
// uint8_t B[128];
|
||||||
|
// EEPROM_ReadBuffer(start_add + add, B, WRITE_SIZE);
|
||||||
|
// if (memcmp(B, data_write, WRITE_SIZE) != 0) {
|
||||||
|
//
|
||||||
|
// UI_PrintStringSmall("FAILED!", 0, 127, 4);
|
||||||
|
//
|
||||||
|
// ST7565_BlitStatusLine(); // blank status line
|
||||||
|
// ST7565_BlitFullScreen();
|
||||||
|
// UART_Send("FAILED!\n", 7);
|
||||||
|
// UART_Send(B, WRITE_SIZE);
|
||||||
|
// }else
|
||||||
|
// {
|
||||||
|
// UI_PrintStringSmall("OK", 0, 127, 3);
|
||||||
|
//
|
||||||
|
// ST7565_BlitStatusLine(); // blank status line
|
||||||
|
// ST7565_BlitFullScreen();
|
||||||
|
// UART_Send("OK!\n", 7);
|
||||||
|
// UART_Send(B, WRITE_SIZE);
|
||||||
|
// }
|
||||||
|
// while (1);
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
|
|
||||||
|
|
||||||
APP_Update();
|
APP_Update();
|
||||||
|
|
||||||
if (gNextTimeslice) {
|
if (gNextTimeslice) {
|
||||||
APP_TimeSlice10ms();
|
APP_TimeSlice10ms();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gNextTimeslice_500ms) {
|
if (gNextTimeslice_500ms) {
|
||||||
APP_TimeSlice500ms();
|
APP_TimeSlice500ms();
|
||||||
}
|
}
|
||||||
|
|
|
@ -387,6 +387,7 @@ void SETTINGS_FetchChannelName(char *s, const int channel)
|
||||||
|
|
||||||
while (i >= 0 && s[i] == 32) // trim trailing spaces
|
while (i >= 0 && s[i] == 32) // trim trailing spaces
|
||||||
s[i--] = 0; // null term
|
s[i--] = 0; // null term
|
||||||
|
// strcpy(s,"\x89\x11\x81\x53\x95\x33\x80\x7F\x8D\xD4");
|
||||||
}
|
}
|
||||||
|
|
||||||
void SETTINGS_FactoryReset(bool bIsAll)
|
void SETTINGS_FactoryReset(bool bIsAll)
|
||||||
|
|
|
@ -754,8 +754,11 @@ void UI_DisplayMain(void) {
|
||||||
//#else
|
//#else
|
||||||
// sprintf(String, "MDC1200 ID %04X", mdc1200_unit_id);
|
// sprintf(String, "MDC1200 ID %04X", mdc1200_unit_id);
|
||||||
//#endif
|
//#endif
|
||||||
|
#ifdef ENABLE_SMALL_BOLD
|
||||||
UI_PrintStringSmallBold(String, print_col, 0, 3);
|
UI_PrintStringSmallBold(String, print_col, 0, 3);
|
||||||
|
#else
|
||||||
|
UI_PrintStringSmall(String, print_col, 0, 3);
|
||||||
|
#endif
|
||||||
|
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -6997,5 +6997,4 @@
|
||||||
ף½
|
ף½
|
||||||
לא
|
לא
|
||||||
Q
|
Q
|
||||||
这是俺拾的手台嘞!
|
哈尔滨中继
|
||||||
俺以为模人要滴哩!
|
|
File diff suppressed because one or more lines are too long
|
@ -1,803 +0,0 @@
|
||||||
{
|
|
||||||
"inputs" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "CMakeLists.txt"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineSystem.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeSystem.cmake.in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.25.2/CMakeSystem.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeSystemSpecificInitialize.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompilerId.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCompilerIdDetection.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/LCC-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/TI-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Tasking-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeFindBinUtils.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU-FindBinUtils.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCCompiler.cmake.in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.25.2/CMakeCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCXXCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-Determine-CXX.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompilerId.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCompilerIdDetection.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/TI-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Tasking-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeFindBinUtils.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU-FindBinUtils.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCXXCompiler.cmake.in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeSystemSpecificInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeGenericSystem.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeInitializeConfigs.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/WindowsPaths.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeFindCodeBlocks.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/ProcessorCount.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeLanguageInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU-C.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-GNU-C.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineRCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeRCCompiler.cmake.in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.25.2/CMakeRCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeRCInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-windres.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestRCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCommonLanguageInclude.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestCompilerCommon.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompilerABI.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeParseImplicitLinkInfo.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeParseLibraryArchitecture.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestCompilerCommon.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCCompilerABI.c"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompileFeatures.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Internal/FeatureTesting.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCCompiler.cmake.in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.25.2/CMakeCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-GNU-C-ABI.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCXXInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeLanguageInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU-CXX.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Compiler/GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-GNU-CXX.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCommonLanguageInclude.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestCXXCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestCompilerCommon.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompilerABI.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeParseImplicitLinkInfo.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeParseLibraryArchitecture.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeTestCompilerCommon.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeDetermineCompileFeatures.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Internal/FeatureTesting.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/CMakeCXXCompiler.cmake.in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug",
|
|
||||||
"source" : "C:/Users/RUPC/Desktop/uv-k5font"
|
|
||||||
},
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,60 +0,0 @@
|
||||||
{
|
|
||||||
"configurations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"directories" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"build" : ".",
|
|
||||||
"jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.25"
|
|
||||||
},
|
|
||||||
"projectIndex" : 0,
|
|
||||||
"source" : ".",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"name" : "Debug",
|
|
||||||
"projects" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"name" : "uv_k5font",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"targets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"directoryIndex" : 0,
|
|
||||||
"id" : "uv_k5font::@6890427a1f51a3e7e1df",
|
|
||||||
"jsonFile" : "target-uv_k5font-Debug-d44d0c737a7679b20600.json",
|
|
||||||
"name" : "uv_k5font",
|
|
||||||
"projectIndex" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug",
|
|
||||||
"source" : "C:/Users/RUPC/Desktop/uv-k5font"
|
|
||||||
},
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 4
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,108 +0,0 @@
|
||||||
{
|
|
||||||
"cmake" :
|
|
||||||
{
|
|
||||||
"generator" :
|
|
||||||
{
|
|
||||||
"multiConfig" : false,
|
|
||||||
"name" : "MinGW Makefiles"
|
|
||||||
},
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"cmake" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/bin/cmake.exe",
|
|
||||||
"cpack" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/bin/cpack.exe",
|
|
||||||
"ctest" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/bin/ctest.exe",
|
|
||||||
"root" : "C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25"
|
|
||||||
},
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"isDirty" : false,
|
|
||||||
"major" : 3,
|
|
||||||
"minor" : 25,
|
|
||||||
"patch" : 2,
|
|
||||||
"string" : "3.25.2",
|
|
||||||
"suffix" : ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"objects" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"jsonFile" : "codemodel-v2-dd4d2e8024b6b815d25b.json",
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 4
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "cache-v2-b0ec2f92a6be9025ddd9.json",
|
|
||||||
"kind" : "cache",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "cmakeFiles-v1-b73d1131bc3178749d01.json",
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "toolchains-v1-a74a31a1757014c51fb0.json",
|
|
||||||
"kind" : "toolchains",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"reply" :
|
|
||||||
{
|
|
||||||
"cache-v2" :
|
|
||||||
{
|
|
||||||
"jsonFile" : "cache-v2-b0ec2f92a6be9025ddd9.json",
|
|
||||||
"kind" : "cache",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"cmakeFiles-v1" :
|
|
||||||
{
|
|
||||||
"jsonFile" : "cmakeFiles-v1-b73d1131bc3178749d01.json",
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"codemodel-v2" :
|
|
||||||
{
|
|
||||||
"jsonFile" : "codemodel-v2-dd4d2e8024b6b815d25b.json",
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 4
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"toolchains-v1" :
|
|
||||||
{
|
|
||||||
"jsonFile" : "toolchains-v1-a74a31a1757014c51fb0.json",
|
|
||||||
"kind" : "toolchains",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +1,5 @@
|
||||||
# This is the CMakeCache file.
|
# This is the CMakeCache file.
|
||||||
# For build in directory: c:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug
|
# For build in directory: c:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug
|
||||||
# It was generated by CMake: C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/bin/cmake.exe
|
# It was generated by CMake: C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/bin/cmake.exe
|
||||||
# You can edit this file to change values found and used by cmake.
|
# You can edit this file to change values found and used by cmake.
|
||||||
# If you do not want to change any of the values, simply exit the editor.
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
@ -115,7 +115,7 @@ CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
//Value Computed by CMake.
|
//Value Computed by CMake.
|
||||||
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/pkgRedirects
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
//Convert GNU import libraries to MS format (requires Visual Studio)
|
//Convert GNU import libraries to MS format (requires Visual Studio)
|
||||||
CMAKE_GNUtoMS:BOOL=OFF
|
CMAKE_GNUtoMS:BOOL=OFF
|
||||||
|
@ -248,13 +248,13 @@ CMAKE_STRIP:FILEPATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/strip.exe
|
||||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
uv_k5font_BINARY_DIR:STATIC=C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug
|
uv_k5font_BINARY_DIR:STATIC=C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
uv_k5font_IS_TOP_LEVEL:STATIC=ON
|
uv_k5font_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
uv_k5font_SOURCE_DIR:STATIC=C:/Users/RUPC/Desktop/uv-k5font
|
uv_k5font_SOURCE_DIR:STATIC=C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full
|
||||||
|
|
||||||
|
|
||||||
########################
|
########################
|
||||||
|
@ -266,7 +266,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_AR
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
CMAKE_AR-ADVANCED:INTERNAL=1
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
//This is the directory where this CMakeCache.txt was created
|
//This is the directory where this CMakeCache.txt was created
|
||||||
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug
|
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug
|
||||||
//Major version of cmake used to create the current loaded cache
|
//Major version of cmake used to create the current loaded cache
|
||||||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
//Minor version of cmake used to create the current loaded cache
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
@ -349,7 +349,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
//Source directory with the top level CMakeLists.txt file for this
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
// project
|
// project
|
||||||
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/RUPC/Desktop/uv-k5font
|
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full
|
||||||
//ADVANCED property for variable: CMAKE_LINKER
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -2,8 +2,8 @@
|
||||||
# Generated by "MinGW Makefiles" Generator, CMake Version 3.25
|
# Generated by "MinGW Makefiles" Generator, CMake Version 3.25
|
||||||
|
|
||||||
# Relative path conversion top directories.
|
# Relative path conversion top directories.
|
||||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/RUPC/Desktop/uv-k5font")
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full")
|
||||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug")
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug")
|
||||||
|
|
||||||
# Force unix paths in dependencies.
|
# Force unix paths in dependencies.
|
||||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
|
@ -10,7 +10,7 @@ The output was:
|
||||||
|
|
||||||
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe"
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe"
|
||||||
|
|
||||||
The C compiler identification is GNU, found in "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/a.exe"
|
The C compiler identification is GNU, found in "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/a.exe"
|
||||||
|
|
||||||
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
Compiler: C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/g++.exe
|
Compiler: C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/g++.exe
|
||||||
|
@ -23,23 +23,23 @@ The output was:
|
||||||
|
|
||||||
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe"
|
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe"
|
||||||
|
|
||||||
The CXX compiler identification is GNU, found in "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/a.exe"
|
The CXX compiler identification is GNU, found in "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/a.exe"
|
||||||
|
|
||||||
Detecting C compiler ABI info compiled with the following output:
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
Change Dir: C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ac6shp
|
Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-az34gr
|
||||||
|
|
||||||
Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_6d90b/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_6d90b.dir\build.make CMakeFiles/cmTC_6d90b.dir/build
|
Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_0edc0/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_0edc0.dir\build.make CMakeFiles/cmTC_0edc0.dir/build
|
||||||
mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ac6shp'
|
mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-az34gr'
|
||||||
Building C object CMakeFiles/cmTC_6d90b.dir/CMakeCCompilerABI.c.obj
|
Building C object CMakeFiles/cmTC_0edc0.dir/CMakeCCompilerABI.c.obj
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c"
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c"
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe
|
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe
|
||||||
Target: x86_64-w64-mingw32
|
Target: x86_64-w64-mingw32
|
||||||
Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '
|
Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccsz4c2j.s
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\cc3XKKXQ.s
|
||||||
GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)
|
GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)
|
||||||
compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP
|
compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP
|
||||||
|
|
||||||
|
@ -60,17 +60,17 @@ GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_6
|
||||||
|
|
||||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
Compiler executable checksum: afb3948cd5c0c8f535365414e7310436
|
Compiler executable checksum: afb3948cd5c0c8f535365414e7310436
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj C:\Users\RUPC\AppData\Local\Temp\ccsz4c2j.s
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj C:\Users\RUPC\AppData\Local\Temp\cc3XKKXQ.s
|
||||||
GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30
|
GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30
|
||||||
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
||||||
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'
|
||||||
Linking C executable cmTC_6d90b.exe
|
Linking C executable cmTC_0edc0.exe
|
||||||
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_6d90b.dir\link.txt --verbose=1
|
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_0edc0.dir\link.txt --verbose=1
|
||||||
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_6d90b.dir/objects.a
|
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_0edc0.dir/objects.a
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_6d90b.dir/objects.a @CMakeFiles\cmTC_6d90b.dir\objects1
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_0edc0.dir/objects.a @CMakeFiles\cmTC_0edc0.dir\objects1
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_6d90b.dir/objects.a -Wl,--no-whole-archive -o cmTC_6d90b.exe -Wl,--out-implib,libcmTC_6d90b.dll.a -Wl,--major-image-version,0,--minor-image-version,0
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_0edc0.dir/objects.a -Wl,--no-whole-archive -o cmTC_0edc0.exe -Wl,--out-implib,libcmTC_0edc0.dll.a -Wl,--major-image-version,0,--minor-image-version,0
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe
|
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe
|
||||||
COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe
|
COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe
|
||||||
|
@ -80,10 +80,10 @@ Thread model: posix
|
||||||
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
||||||
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
||||||
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6d90b.exe' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0edc0.exe' '-mtune=core2' '-march=nocona'
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccua55XB.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_6d90b.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_6d90b.dir/objects.a --no-whole-archive --out-implib libcmTC_6d90b.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccbu79h5.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_0edc0.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_0edc0.dir/objects.a --no-whole-archive --out-implib libcmTC_0edc0.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6d90b.exe' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0edc0.exe' '-mtune=core2' '-march=nocona'
|
||||||
mingw32-make.exe[1]: Leaving directory 'C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ac6shp'
|
mingw32-make.exe[1]: Leaving directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-az34gr'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -102,20 +102,20 @@ Parsed C implicit include dir info from above output: rv=done
|
||||||
|
|
||||||
Parsed C implicit link information from above output:
|
Parsed C implicit link information from above output:
|
||||||
link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
ignore line: [Change Dir: C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ac6shp]
|
ignore line: [Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-az34gr]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_6d90b/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_6d90b.dir\build.make CMakeFiles/cmTC_6d90b.dir/build]
|
ignore line: [Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_0edc0/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_0edc0.dir\build.make CMakeFiles/cmTC_0edc0.dir/build]
|
||||||
ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ac6shp']
|
ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-az34gr']
|
||||||
ignore line: [Building C object CMakeFiles/cmTC_6d90b.dir/CMakeCCompilerABI.c.obj]
|
ignore line: [Building C object CMakeFiles/cmTC_0edc0.dir/CMakeCCompilerABI.c.obj]
|
||||||
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c"]
|
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c"]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe]
|
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe]
|
||||||
ignore line: [Target: x86_64-w64-mingw32]
|
ignore line: [Target: x86_64-w64-mingw32]
|
||||||
ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
|
ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ]
|
ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
|
||||||
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccsz4c2j.s]
|
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\cc3XKKXQ.s]
|
||||||
ignore line: [GNU C11 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
|
ignore line: [GNU C11 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
|
||||||
ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP]
|
ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
|
@ -136,8 +136,8 @@ Parsed C implicit link information from above output:
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
ignore line: [Compiler executable checksum: afb3948cd5c0c8f535365414e7310436]
|
ignore line: [Compiler executable checksum: afb3948cd5c0c8f535365414e7310436]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
|
||||||
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj C:\Users\RUPC\AppData\Local\Temp\ccsz4c2j.s]
|
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj C:\Users\RUPC\AppData\Local\Temp\cc3XKKXQ.s]
|
||||||
ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30]
|
ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30]
|
||||||
ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
|
ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/]
|
||||||
|
@ -148,12 +148,12 @@ Parsed C implicit link information from above output:
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6d90b.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_0edc0.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
|
||||||
ignore line: [Linking C executable cmTC_6d90b.exe]
|
ignore line: [Linking C executable cmTC_0edc0.exe]
|
||||||
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_6d90b.dir\link.txt --verbose=1]
|
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_0edc0.dir\link.txt --verbose=1]
|
||||||
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_6d90b.dir/objects.a]
|
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_0edc0.dir/objects.a]
|
||||||
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_6d90b.dir/objects.a @CMakeFiles\cmTC_6d90b.dir\objects1]
|
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_0edc0.dir/objects.a @CMakeFiles\cmTC_0edc0.dir\objects1]
|
||||||
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -v -Wl --whole-archive CMakeFiles\cmTC_6d90b.dir/objects.a -Wl --no-whole-archive -o cmTC_6d90b.exe -Wl --out-implib libcmTC_6d90b.dll.a -Wl --major-image-version 0 --minor-image-version 0 ]
|
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -v -Wl --whole-archive CMakeFiles\cmTC_0edc0.dir/objects.a -Wl --no-whole-archive -o cmTC_0edc0.exe -Wl --out-implib libcmTC_0edc0.dll.a -Wl --major-image-version 0 --minor-image-version 0 ]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe]
|
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe]
|
||||||
ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe]
|
ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe]
|
||||||
|
@ -170,13 +170,13 @@ Parsed C implicit link information from above output:
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6d90b.exe' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0edc0.exe' '-mtune=core2' '-march=nocona']
|
||||||
link line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccua55XB.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_6d90b.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_6d90b.dir/objects.a --no-whole-archive --out-implib libcmTC_6d90b.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o]
|
link line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccbu79h5.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_0edc0.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_0edc0.dir/objects.a --no-whole-archive --out-implib libcmTC_0edc0.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o]
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore
|
||||||
arg [-plugin] ==> ignore
|
arg [-plugin] ==> ignore
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore
|
||||||
arg [-plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore
|
arg [-plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore
|
||||||
arg [-plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccua55XB.res] ==> ignore
|
arg [-plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccbu79h5.res] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
|
arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore
|
||||||
|
@ -200,7 +200,7 @@ Parsed C implicit link information from above output:
|
||||||
arg [i386pep] ==> ignore
|
arg [i386pep] ==> ignore
|
||||||
arg [-Bdynamic] ==> search dynamic
|
arg [-Bdynamic] ==> search dynamic
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_6d90b.exe] ==> ignore
|
arg [cmTC_0edc0.exe] ==> ignore
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o]
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o]
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o]
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o]
|
||||||
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0]
|
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0]
|
||||||
|
@ -210,10 +210,10 @@ Parsed C implicit link information from above output:
|
||||||
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib]
|
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib]
|
||||||
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..]
|
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..]
|
||||||
arg [--whole-archive] ==> ignore
|
arg [--whole-archive] ==> ignore
|
||||||
arg [CMakeFiles\cmTC_6d90b.dir/objects.a] ==> ignore
|
arg [CMakeFiles\cmTC_0edc0.dir/objects.a] ==> ignore
|
||||||
arg [--no-whole-archive] ==> ignore
|
arg [--no-whole-archive] ==> ignore
|
||||||
arg [--out-implib] ==> ignore
|
arg [--out-implib] ==> ignore
|
||||||
arg [libcmTC_6d90b.dll.a] ==> ignore
|
arg [libcmTC_0edc0.dll.a] ==> ignore
|
||||||
arg [--major-image-version] ==> ignore
|
arg [--major-image-version] ==> ignore
|
||||||
arg [0] ==> ignore
|
arg [0] ==> ignore
|
||||||
arg [--minor-image-version] ==> ignore
|
arg [--minor-image-version] ==> ignore
|
||||||
|
@ -257,20 +257,20 @@ Parsed C implicit link information from above output:
|
||||||
|
|
||||||
|
|
||||||
Detecting CXX compiler ABI info compiled with the following output:
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
Change Dir: C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-h0c68t
|
Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-dbhd9a
|
||||||
|
|
||||||
Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_25603/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_25603.dir\build.make CMakeFiles/cmTC_25603.dir/build
|
Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_6ef8a/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_6ef8a.dir\build.make CMakeFiles/cmTC_6ef8a.dir/build
|
||||||
mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-h0c68t'
|
mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-dbhd9a'
|
||||||
Building CXX object CMakeFiles/cmTC_25603.dir/CMakeCXXCompilerABI.cpp.obj
|
Building CXX object CMakeFiles/cmTC_6ef8a.dir/CMakeCXXCompilerABI.cpp.obj
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp"
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp"
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe
|
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe
|
||||||
Target: x86_64-w64-mingw32
|
Target: x86_64-w64-mingw32
|
||||||
Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '
|
Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccAdoZO6.s
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\cc0dxXex.s
|
||||||
GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)
|
GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)
|
||||||
compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP
|
compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP
|
||||||
|
|
||||||
|
@ -297,17 +297,17 @@ GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86
|
||||||
|
|
||||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd
|
Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\RUPC\AppData\Local\Temp\ccAdoZO6.s
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\RUPC\AppData\Local\Temp\cc0dxXex.s
|
||||||
GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30
|
GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30
|
||||||
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
||||||
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
||||||
Linking CXX executable cmTC_25603.exe
|
Linking CXX executable cmTC_6ef8a.exe
|
||||||
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_25603.dir\link.txt --verbose=1
|
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_6ef8a.dir\link.txt --verbose=1
|
||||||
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_25603.dir/objects.a
|
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_6ef8a.dir/objects.a
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_25603.dir/objects.a @CMakeFiles\cmTC_25603.dir\objects1
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_6ef8a.dir/objects.a @CMakeFiles\cmTC_6ef8a.dir\objects1
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -v -Wl,--whole-archive CMakeFiles\cmTC_25603.dir/objects.a -Wl,--no-whole-archive -o cmTC_25603.exe -Wl,--out-implib,libcmTC_25603.dll.a -Wl,--major-image-version,0,--minor-image-version,0
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -v -Wl,--whole-archive CMakeFiles\cmTC_6ef8a.dir/objects.a -Wl,--no-whole-archive -o cmTC_6ef8a.exe -Wl,--out-implib,libcmTC_6ef8a.dll.a -Wl,--major-image-version,0,--minor-image-version,0
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe
|
COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe
|
||||||
COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe
|
COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe
|
||||||
|
@ -317,10 +317,10 @@ Thread model: posix
|
||||||
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)
|
||||||
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/
|
||||||
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_25603.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6ef8a.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccT8y0pb.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_25603.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_25603.dir/objects.a --no-whole-archive --out-implib libcmTC_25603.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccSrKjpH.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_6ef8a.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_6ef8a.dir/objects.a --no-whole-archive --out-implib libcmTC_6ef8a.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_25603.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6ef8a.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'
|
||||||
mingw32-make.exe[1]: Leaving directory 'C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-h0c68t'
|
mingw32-make.exe[1]: Leaving directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-dbhd9a'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -345,20 +345,20 @@ Parsed CXX implicit include dir info from above output: rv=done
|
||||||
|
|
||||||
Parsed CXX implicit link information from above output:
|
Parsed CXX implicit link information from above output:
|
||||||
link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
ignore line: [Change Dir: C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-h0c68t]
|
ignore line: [Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-dbhd9a]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_25603/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_25603.dir\build.make CMakeFiles/cmTC_25603.dir/build]
|
ignore line: [Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_6ef8a/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_6ef8a.dir\build.make CMakeFiles/cmTC_6ef8a.dir/build]
|
||||||
ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-h0c68t']
|
ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-dbhd9a']
|
||||||
ignore line: [Building CXX object CMakeFiles/cmTC_25603.dir/CMakeCXXCompilerABI.cpp.obj]
|
ignore line: [Building CXX object CMakeFiles/cmTC_6ef8a.dir/CMakeCXXCompilerABI.cpp.obj]
|
||||||
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp"]
|
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp"]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe]
|
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe]
|
||||||
ignore line: [Target: x86_64-w64-mingw32]
|
ignore line: [Target: x86_64-w64-mingw32]
|
||||||
ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
|
ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ]
|
ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
||||||
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccAdoZO6.s]
|
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\cc0dxXex.s]
|
||||||
ignore line: [GNU C++14 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
|
ignore line: [GNU C++14 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
|
||||||
ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP]
|
ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
|
@ -385,8 +385,8 @@ Parsed CXX implicit link information from above output:
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
ignore line: [Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd]
|
ignore line: [Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
||||||
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\RUPC\AppData\Local\Temp\ccAdoZO6.s]
|
ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\RUPC\AppData\Local\Temp\cc0dxXex.s]
|
||||||
ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30]
|
ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30]
|
||||||
ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
|
ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/]
|
||||||
|
@ -397,12 +397,12 @@ Parsed CXX implicit link information from above output:
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_25603.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_6ef8a.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
||||||
ignore line: [Linking CXX executable cmTC_25603.exe]
|
ignore line: [Linking CXX executable cmTC_6ef8a.exe]
|
||||||
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_25603.dir\link.txt --verbose=1]
|
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_6ef8a.dir\link.txt --verbose=1]
|
||||||
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_25603.dir/objects.a]
|
ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_6ef8a.dir/objects.a]
|
||||||
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_25603.dir/objects.a @CMakeFiles\cmTC_25603.dir\objects1]
|
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_6ef8a.dir/objects.a @CMakeFiles\cmTC_6ef8a.dir\objects1]
|
||||||
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -v -Wl --whole-archive CMakeFiles\cmTC_25603.dir/objects.a -Wl --no-whole-archive -o cmTC_25603.exe -Wl --out-implib libcmTC_25603.dll.a -Wl --major-image-version 0 --minor-image-version 0 ]
|
ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -v -Wl --whole-archive CMakeFiles\cmTC_6ef8a.dir/objects.a -Wl --no-whole-archive -o cmTC_6ef8a.exe -Wl --out-implib libcmTC_6ef8a.dll.a -Wl --major-image-version 0 --minor-image-version 0 ]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe]
|
ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe]
|
||||||
ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe]
|
ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe]
|
||||||
|
@ -419,13 +419,13 @@ Parsed CXX implicit link information from above output:
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
|
||||||
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_25603.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6ef8a.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona']
|
||||||
link line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccT8y0pb.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_25603.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_25603.dir/objects.a --no-whole-archive --out-implib libcmTC_25603.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o]
|
link line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccSrKjpH.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_6ef8a.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_6ef8a.dir/objects.a --no-whole-archive --out-implib libcmTC_6ef8a.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o]
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore
|
||||||
arg [-plugin] ==> ignore
|
arg [-plugin] ==> ignore
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore
|
||||||
arg [-plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore
|
arg [-plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore
|
||||||
arg [-plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccT8y0pb.res] ==> ignore
|
arg [-plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccSrKjpH.res] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
|
arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
@ -449,7 +449,7 @@ Parsed CXX implicit link information from above output:
|
||||||
arg [i386pep] ==> ignore
|
arg [i386pep] ==> ignore
|
||||||
arg [-Bdynamic] ==> search dynamic
|
arg [-Bdynamic] ==> search dynamic
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_25603.exe] ==> ignore
|
arg [cmTC_6ef8a.exe] ==> ignore
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o]
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o]
|
||||||
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o]
|
arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o]
|
||||||
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0]
|
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0]
|
||||||
|
@ -459,10 +459,10 @@ Parsed CXX implicit link information from above output:
|
||||||
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib]
|
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib]
|
||||||
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..]
|
arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..]
|
||||||
arg [--whole-archive] ==> ignore
|
arg [--whole-archive] ==> ignore
|
||||||
arg [CMakeFiles\cmTC_25603.dir/objects.a] ==> ignore
|
arg [CMakeFiles\cmTC_6ef8a.dir/objects.a] ==> ignore
|
||||||
arg [--no-whole-archive] ==> ignore
|
arg [--no-whole-archive] ==> ignore
|
||||||
arg [--out-implib] ==> ignore
|
arg [--out-implib] ==> ignore
|
||||||
arg [libcmTC_25603.dll.a] ==> ignore
|
arg [libcmTC_6ef8a.dll.a] ==> ignore
|
||||||
arg [--major-image-version] ==> ignore
|
arg [--major-image-version] ==> ignore
|
||||||
arg [0] ==> ignore
|
arg [0] ==> ignore
|
||||||
arg [--minor-image-version] ==> ignore
|
arg [--minor-image-version] ==> ignore
|
||||||
|
|
|
@ -108,7 +108,7 @@ set(CMAKE_MAKEFILE_DEPENDS
|
||||||
"C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows.cmake"
|
"C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/Windows.cmake"
|
||||||
"C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/WindowsPaths.cmake"
|
"C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/Platform/WindowsPaths.cmake"
|
||||||
"C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/ProcessorCount.cmake"
|
"C:/Program Files/JetBrains/CLion 2023.1.1/bin/cmake/win/x64/share/cmake-3.25/Modules/ProcessorCount.cmake"
|
||||||
"C:/Users/RUPC/Desktop/uv-k5font/CMakeLists.txt"
|
"C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/CMakeLists.txt"
|
||||||
"CMakeFiles/3.25.2/CMakeCCompiler.cmake"
|
"CMakeFiles/3.25.2/CMakeCCompiler.cmake"
|
||||||
"CMakeFiles/3.25.2/CMakeCXXCompiler.cmake"
|
"CMakeFiles/3.25.2/CMakeCXXCompiler.cmake"
|
||||||
"CMakeFiles/3.25.2/CMakeRCCompiler.cmake"
|
"CMakeFiles/3.25.2/CMakeRCCompiler.cmake"
|
||||||
|
|
|
@ -53,10 +53,10 @@ RM = "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe"
|
||||||
EQUALS = =
|
EQUALS = =
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
# The top-level source directory on which CMake was run.
|
||||||
CMAKE_SOURCE_DIR = C:\Users\RUPC\Desktop\uv-k5font
|
CMAKE_SOURCE_DIR = C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
# The top-level build directory on which CMake was run.
|
||||||
CMAKE_BINARY_DIR = C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug
|
CMAKE_BINARY_DIR = C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Directory level rules for the build root directory
|
# Directory level rules for the build root directory
|
||||||
|
@ -80,14 +80,14 @@ clean: CMakeFiles/uv_k5font.dir/clean
|
||||||
CMakeFiles/uv_k5font.dir/all:
|
CMakeFiles/uv_k5font.dir/all:
|
||||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\uv_k5font.dir\build.make CMakeFiles/uv_k5font.dir/depend
|
$(MAKE) $(MAKESILENT) -f CMakeFiles\uv_k5font.dir\build.make CMakeFiles/uv_k5font.dir/depend
|
||||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\uv_k5font.dir\build.make CMakeFiles/uv_k5font.dir/build
|
$(MAKE) $(MAKESILENT) -f CMakeFiles\uv_k5font.dir\build.make CMakeFiles/uv_k5font.dir/build
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles --progress-num=1,2,3 "Built target uv_k5font"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles --progress-num=1,2,3 "Built target uv_k5font"
|
||||||
.PHONY : CMakeFiles/uv_k5font.dir/all
|
.PHONY : CMakeFiles/uv_k5font.dir/all
|
||||||
|
|
||||||
# Build rule for subdir invocation for target.
|
# Build rule for subdir invocation for target.
|
||||||
CMakeFiles/uv_k5font.dir/rule: cmake_check_build_system
|
CMakeFiles/uv_k5font.dir/rule: cmake_check_build_system
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles 3
|
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles 3
|
||||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 CMakeFiles/uv_k5font.dir/all
|
$(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 CMakeFiles/uv_k5font.dir/all
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles 0
|
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles 0
|
||||||
.PHONY : CMakeFiles/uv_k5font.dir/rule
|
.PHONY : CMakeFiles/uv_k5font.dir/rule
|
||||||
|
|
||||||
# Convenience name for target.
|
# Convenience name for target.
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/uv_k5font.dir
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/uv_k5font.dir
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/edit_cache.dir
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/edit_cache.dir
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -DCMAKE_C_COMPILER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/gcc.exe -DCMAKE_CXX_COMPILER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/g++.exe -G "CodeBlocks - MinGW Makefiles" -S C:\Users\RUPC\Desktop\uv-k5font -B C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug
|
"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -DCMAKE_C_COMPILER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/gcc.exe -DCMAKE_CXX_COMPILER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/g++.exe -G "CodeBlocks - MinGW Makefiles" -S C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full -B C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug
|
||||||
-- The C compiler identification is GNU 7.3.0
|
-- The C compiler identification is GNU 7.3.0
|
||||||
-- The CXX compiler identification is GNU 7.3.0
|
-- The CXX compiler identification is GNU 7.3.0
|
||||||
-- Detecting C compiler ABI info
|
-- Detecting C compiler ABI info
|
||||||
|
@ -13,4 +13,4 @@
|
||||||
-- Detecting CXX compile features - done
|
-- Detecting CXX compile features - done
|
||||||
-- Configuring done
|
-- Configuring done
|
||||||
-- Generating done
|
-- Generating done
|
||||||
-- Build files have been written to: C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug
|
-- Build files have been written to: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug
|
||||||
|
|
|
@ -8,8 +8,8 @@ set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
|
||||||
# The set of dependency files which are needed:
|
# The set of dependency files which are needed:
|
||||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
"C:/Users/RUPC/Desktop/uv-k5font/font.cpp" "CMakeFiles/uv_k5font.dir/font.cpp.obj" "gcc" "CMakeFiles/uv_k5font.dir/font.cpp.obj.d"
|
"C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.cpp" "CMakeFiles/uv_k5font.dir/font.cpp.obj" "gcc" "CMakeFiles/uv_k5font.dir/font.cpp.obj.d"
|
||||||
"C:/Users/RUPC/Desktop/uv-k5font/main.cpp" "CMakeFiles/uv_k5font.dir/main.cpp.obj" "gcc" "CMakeFiles/uv_k5font.dir/main.cpp.obj.d"
|
"C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/main.cpp" "CMakeFiles/uv_k5font.dir/main.cpp.obj" "gcc" "CMakeFiles/uv_k5font.dir/main.cpp.obj.d"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Targets to which this target links.
|
# Targets to which this target links.
|
||||||
|
|
|
@ -52,10 +52,10 @@ RM = "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe"
|
||||||
EQUALS = =
|
EQUALS = =
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
# The top-level source directory on which CMake was run.
|
||||||
CMAKE_SOURCE_DIR = C:\Users\RUPC\Desktop\uv-k5font
|
CMAKE_SOURCE_DIR = C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
# The top-level build directory on which CMake was run.
|
||||||
CMAKE_BINARY_DIR = C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug
|
CMAKE_BINARY_DIR = C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug
|
||||||
|
|
||||||
# Include any dependencies generated for this target.
|
# Include any dependencies generated for this target.
|
||||||
include CMakeFiles/uv_k5font.dir/depend.make
|
include CMakeFiles/uv_k5font.dir/depend.make
|
||||||
|
@ -69,32 +69,32 @@ include CMakeFiles/uv_k5font.dir/progress.make
|
||||||
include CMakeFiles/uv_k5font.dir/flags.make
|
include CMakeFiles/uv_k5font.dir/flags.make
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.obj: CMakeFiles/uv_k5font.dir/flags.make
|
CMakeFiles/uv_k5font.dir/main.cpp.obj: CMakeFiles/uv_k5font.dir/flags.make
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.obj: C:/Users/RUPC/Desktop/uv-k5font/main.cpp
|
CMakeFiles/uv_k5font.dir/main.cpp.obj: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/main.cpp
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.obj: CMakeFiles/uv_k5font.dir/compiler_depend.ts
|
CMakeFiles/uv_k5font.dir/main.cpp.obj: CMakeFiles/uv_k5font.dir/compiler_depend.ts
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/uv_k5font.dir/main.cpp.obj"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/uv_k5font.dir/main.cpp.obj"
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/uv_k5font.dir/main.cpp.obj -MF CMakeFiles\uv_k5font.dir\main.cpp.obj.d -o CMakeFiles\uv_k5font.dir\main.cpp.obj -c C:\Users\RUPC\Desktop\uv-k5font\main.cpp
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/uv_k5font.dir/main.cpp.obj -MF CMakeFiles\uv_k5font.dir\main.cpp.obj.d -o CMakeFiles\uv_k5font.dir\main.cpp.obj -c C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\main.cpp
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.i: cmake_force
|
CMakeFiles/uv_k5font.dir/main.cpp.i: cmake_force
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/uv_k5font.dir/main.cpp.i"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/uv_k5font.dir/main.cpp.i"
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\RUPC\Desktop\uv-k5font\main.cpp > CMakeFiles\uv_k5font.dir\main.cpp.i
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\main.cpp > CMakeFiles\uv_k5font.dir\main.cpp.i
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.s: cmake_force
|
CMakeFiles/uv_k5font.dir/main.cpp.s: cmake_force
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/uv_k5font.dir/main.cpp.s"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/uv_k5font.dir/main.cpp.s"
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\RUPC\Desktop\uv-k5font\main.cpp -o CMakeFiles\uv_k5font.dir\main.cpp.s
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\main.cpp -o CMakeFiles\uv_k5font.dir\main.cpp.s
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.obj: CMakeFiles/uv_k5font.dir/flags.make
|
CMakeFiles/uv_k5font.dir/font.cpp.obj: CMakeFiles/uv_k5font.dir/flags.make
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.obj: C:/Users/RUPC/Desktop/uv-k5font/font.cpp
|
CMakeFiles/uv_k5font.dir/font.cpp.obj: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.cpp
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.obj: CMakeFiles/uv_k5font.dir/compiler_depend.ts
|
CMakeFiles/uv_k5font.dir/font.cpp.obj: CMakeFiles/uv_k5font.dir/compiler_depend.ts
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/uv_k5font.dir/font.cpp.obj"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/uv_k5font.dir/font.cpp.obj"
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/uv_k5font.dir/font.cpp.obj -MF CMakeFiles\uv_k5font.dir\font.cpp.obj.d -o CMakeFiles\uv_k5font.dir\font.cpp.obj -c C:\Users\RUPC\Desktop\uv-k5font\font.cpp
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/uv_k5font.dir/font.cpp.obj -MF CMakeFiles\uv_k5font.dir\font.cpp.obj.d -o CMakeFiles\uv_k5font.dir\font.cpp.obj -c C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\font.cpp
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.i: cmake_force
|
CMakeFiles/uv_k5font.dir/font.cpp.i: cmake_force
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/uv_k5font.dir/font.cpp.i"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/uv_k5font.dir/font.cpp.i"
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\RUPC\Desktop\uv-k5font\font.cpp > CMakeFiles\uv_k5font.dir\font.cpp.i
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\font.cpp > CMakeFiles\uv_k5font.dir\font.cpp.i
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.s: cmake_force
|
CMakeFiles/uv_k5font.dir/font.cpp.s: cmake_force
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/uv_k5font.dir/font.cpp.s"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/uv_k5font.dir/font.cpp.s"
|
||||||
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\RUPC\Desktop\uv-k5font\font.cpp -o CMakeFiles\uv_k5font.dir\font.cpp.s
|
C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\font.cpp -o CMakeFiles\uv_k5font.dir\font.cpp.s
|
||||||
|
|
||||||
# Object files for target uv_k5font
|
# Object files for target uv_k5font
|
||||||
uv_k5font_OBJECTS = \
|
uv_k5font_OBJECTS = \
|
||||||
|
@ -110,7 +110,7 @@ uv_k5font.exe: CMakeFiles/uv_k5font.dir/build.make
|
||||||
uv_k5font.exe: CMakeFiles/uv_k5font.dir/linkLibs.rsp
|
uv_k5font.exe: CMakeFiles/uv_k5font.dir/linkLibs.rsp
|
||||||
uv_k5font.exe: CMakeFiles/uv_k5font.dir/objects1
|
uv_k5font.exe: CMakeFiles/uv_k5font.dir/objects1
|
||||||
uv_k5font.exe: CMakeFiles/uv_k5font.dir/link.txt
|
uv_k5font.exe: CMakeFiles/uv_k5font.dir/link.txt
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX executable uv_k5font.exe"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX executable uv_k5font.exe"
|
||||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\uv_k5font.dir\link.txt --verbose=$(VERBOSE)
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\uv_k5font.dir\link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
# Rule to build all files generated by this target.
|
# Rule to build all files generated by this target.
|
||||||
|
@ -122,6 +122,6 @@ CMakeFiles/uv_k5font.dir/clean:
|
||||||
.PHONY : CMakeFiles/uv_k5font.dir/clean
|
.PHONY : CMakeFiles/uv_k5font.dir/clean
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/depend:
|
CMakeFiles/uv_k5font.dir/depend:
|
||||||
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\Users\RUPC\Desktop\uv-k5font C:\Users\RUPC\Desktop\uv-k5font C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles\uv_k5font.dir\DependInfo.cmake --color=$(COLOR)
|
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles\uv_k5font.dir\DependInfo.cmake --color=$(COLOR)
|
||||||
.PHONY : CMakeFiles/uv_k5font.dir/depend
|
.PHONY : CMakeFiles/uv_k5font.dir/depend
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
# Generated by "MinGW Makefiles" Generator, CMake Version 3.25
|
# Generated by "MinGW Makefiles" Generator, CMake Version 3.25
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.obj
|
CMakeFiles/uv_k5font.dir/font.cpp.obj
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.cpp
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.cpp
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.h
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.h
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.obj
|
CMakeFiles/uv_k5font.dir/main.cpp.obj
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/main.cpp
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/main.cpp
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iostream
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iostream
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/c++config.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/c++config.h
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h
|
||||||
|
@ -161,7 +161,7 @@ CMakeFiles/uv_k5font.dir/main.cpp.obj
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/uses_allocator.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/uses_allocator.h
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/invoke.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/invoke.h
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_multimap.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_multimap.h
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.h
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.h
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/stdc++.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/stdc++.h
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cassert
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cassert
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/assert.h
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/assert.h
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# CMAKE generated file: DO NOT EDIT!
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
# Generated by "MinGW Makefiles" Generator, CMake Version 3.25
|
# Generated by "MinGW Makefiles" Generator, CMake Version 3.25
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/font.cpp.obj: C:/Users/RUPC/Desktop/uv-k5font/font.cpp \
|
CMakeFiles/uv_k5font.dir/font.cpp.obj: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.cpp \
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.h
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.h
|
||||||
|
|
||||||
CMakeFiles/uv_k5font.dir/main.cpp.obj: C:/Users/RUPC/Desktop/uv-k5font/main.cpp \
|
CMakeFiles/uv_k5font.dir/main.cpp.obj: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/main.cpp \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iostream \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iostream \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \
|
||||||
|
@ -159,7 +159,7 @@ CMakeFiles/uv_k5font.dir/main.cpp.obj: C:/Users/RUPC/Desktop/uv-k5font/main.cpp
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/uses_allocator.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/uses_allocator.h \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/invoke.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/invoke.h \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_multimap.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_multimap.h \
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.h \
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.h \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/stdc++.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/stdc++.h \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cassert \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cassert \
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/assert.h \
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/assert.h \
|
||||||
|
@ -322,15 +322,23 @@ CMakeFiles/uv_k5font.dir/main.cpp.obj: C:/Users/RUPC/Desktop/uv-k5font/main.cpp
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/shared_mutex
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/shared_mutex
|
||||||
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/atomic_futex.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/localefwd.h:
|
||||||
|
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/main.cpp:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cstdbool:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/ratio:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/type_traits:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/istream:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iosfwd:
|
||||||
|
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.cpp:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/sstream.tcc:
|
||||||
|
|
||||||
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/main.cpp:
|
||||||
|
|
||||||
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/set:
|
||||||
|
|
||||||
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.cpp:
|
||||||
|
|
||||||
|
C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||||
|
|
||||||
|
@ -354,12 +362,6 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cs
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iostream:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iostream:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/stdarg.h:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/vector.tcc:
|
|
||||||
|
|
||||||
C:/Users/RUPC/Desktop/uv-k5font/font.h:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/cpp_type_traits.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/cpp_type_traits.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/ostream:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/ostream:
|
||||||
|
@ -378,14 +380,6 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/io
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/swprintf.inl:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/localefwd.h:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cstdbool:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/type_traits:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/iosfwd:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stringfwd.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stringfwd.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/basic_string.tcc:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/basic_string.tcc:
|
||||||
|
@ -668,6 +662,10 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bi
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/ostream.tcc:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/ostream.tcc:
|
||||||
|
|
||||||
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/ratio:
|
||||||
|
|
||||||
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/istream:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/istream.tcc:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/istream.tcc:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/_timeval.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/_timeval.h:
|
||||||
|
@ -700,6 +698,10 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bi
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_bvector.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_bvector.h:
|
||||||
|
|
||||||
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/stdarg.h:
|
||||||
|
|
||||||
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/vector.tcc:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/array:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/array:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/map:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/map:
|
||||||
|
@ -796,8 +798,6 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include/pthread_time.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/sstream:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/sstream:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/sstream.tcc:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cfenv:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cfenv:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cinttypes:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/cinttypes:
|
||||||
|
@ -886,8 +886,6 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/qu
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_queue.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_queue.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/set:
|
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/emmintrin.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/emmintrin.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_set.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/stl_set.h:
|
||||||
|
@ -914,6 +912,8 @@ C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/co
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/forward_list.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/forward_list.h:
|
||||||
|
|
||||||
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/bits/atomic_futex.h:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/random:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/random:
|
||||||
|
|
||||||
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/opt_random.h:
|
C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32/bits/opt_random.h:
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -56,10 +56,10 @@ RM = "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe"
|
||||||
EQUALS = =
|
EQUALS = =
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
# The top-level source directory on which CMake was run.
|
||||||
CMAKE_SOURCE_DIR = C:\Users\RUPC\Desktop\uv-k5font
|
CMAKE_SOURCE_DIR = C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
# The top-level build directory on which CMake was run.
|
||||||
CMAKE_BINARY_DIR = C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug
|
CMAKE_BINARY_DIR = C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Targets provided globally by CMake.
|
# Targets provided globally by CMake.
|
||||||
|
@ -86,9 +86,9 @@ rebuild_cache/fast: rebuild_cache
|
||||||
|
|
||||||
# The main all target
|
# The main all target
|
||||||
all: cmake_check_build_system
|
all: cmake_check_build_system
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\\CMakeFiles\progress.marks
|
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\\CMakeFiles\progress.marks
|
||||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 all
|
$(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 all
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\uv-k5font\cmake-build-debug\CMakeFiles 0
|
$(CMAKE_COMMAND) -E cmake_progress_start C:\Users\RUPC\Desktop\UV-K6\uv-k5-firmware-chinese\uv-k5font\uv-k5font_full\cmake-build-debug\CMakeFiles 0
|
||||||
.PHONY : all
|
.PHONY : all
|
||||||
|
|
||||||
# The main clean target
|
# The main clean target
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
Start testing: Dec 20 22:47 中国标准时间
|
Start testing: Dec 21 00:19 中国标准时间
|
||||||
----------------------------------------------------------
|
----------------------------------------------------------
|
||||||
End testing: Dec 20 22:47 中国标准时间
|
End testing: Dec 21 00:19 中国标准时间
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Install script for directory: C:/Users/RUPC/Desktop/uv-k5font
|
# Install script for directory: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full
|
||||||
|
|
||||||
# Set the install prefix
|
# Set the install prefix
|
||||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
@ -45,5 +45,5 @@ endif()
|
||||||
|
|
||||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
file(WRITE "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
file(WRITE "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
||||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
|
|
@ -8,18 +8,18 @@
|
||||||
<Option virtualFolders="CMake Files\;"/>
|
<Option virtualFolders="CMake Files\;"/>
|
||||||
<Build>
|
<Build>
|
||||||
<Target title="all">
|
<Target title="all">
|
||||||
<Option working_dir="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug"/>
|
<Option working_dir="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug"/>
|
||||||
<Option type="4"/>
|
<Option type="4"/>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 all"/>
|
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 all"/>
|
||||||
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="uv_k5font">
|
<Target title="uv_k5font">
|
||||||
<Option output="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/uv_k5font.exe" prefix_auto="0" extension_auto="0"/>
|
<Option output="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/uv_k5font.exe" prefix_auto="0" extension_auto="0"/>
|
||||||
<Option working_dir="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug"/>
|
<Option working_dir="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug"/>
|
||||||
<Option object_output="./"/>
|
<Option object_output="./"/>
|
||||||
<Option type="1"/>
|
<Option type="1"/>
|
||||||
<Option compiler="gcc"/>
|
<Option compiler="gcc"/>
|
||||||
|
@ -32,15 +32,15 @@
|
||||||
<Add directory="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"/>
|
<Add directory="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"/>
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 uv_k5font"/>
|
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 uv_k5font"/>
|
||||||
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="uv_k5font/fast">
|
<Target title="uv_k5font/fast">
|
||||||
<Option output="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/uv_k5font.exe" prefix_auto="0" extension_auto="0"/>
|
<Option output="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/uv_k5font.exe" prefix_auto="0" extension_auto="0"/>
|
||||||
<Option working_dir="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug"/>
|
<Option working_dir="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug"/>
|
||||||
<Option object_output="./"/>
|
<Option object_output="./"/>
|
||||||
<Option type="1"/>
|
<Option type="1"/>
|
||||||
<Option compiler="gcc"/>
|
<Option compiler="gcc"/>
|
||||||
|
@ -53,43 +53,43 @@
|
||||||
<Add directory="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"/>
|
<Add directory="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"/>
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 uv_k5font/fast"/>
|
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 uv_k5font/fast"/>
|
||||||
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="edit_cache">
|
<Target title="edit_cache">
|
||||||
<Option working_dir="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug"/>
|
<Option working_dir="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug"/>
|
||||||
<Option type="4"/>
|
<Option type="4"/>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 edit_cache"/>
|
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 edit_cache"/>
|
||||||
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="rebuild_cache">
|
<Target title="rebuild_cache">
|
||||||
<Option working_dir="C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug"/>
|
<Option working_dir="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug"/>
|
||||||
<Option type="4"/>
|
<Option type="4"/>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 rebuild_cache"/>
|
<Build command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 rebuild_cache"/>
|
||||||
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/uv-k5font/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
</Build>
|
</Build>
|
||||||
<Unit filename="C:/Users/RUPC/Desktop/uv-k5font/font.cpp">
|
<Unit filename="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.cpp">
|
||||||
<Option target="uv_k5font"/>
|
<Option target="uv_k5font"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="C:/Users/RUPC/Desktop/uv-k5font/font.h">
|
<Unit filename="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/font.h">
|
||||||
<Option target="uv_k5font"/>
|
<Option target="uv_k5font"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="C:/Users/RUPC/Desktop/uv-k5font/main.cpp">
|
<Unit filename="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/main.cpp">
|
||||||
<Option target="uv_k5font"/>
|
<Option target="uv_k5font"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="C:/Users/RUPC/Desktop/uv-k5font/CMakeLists.txt">
|
<Unit filename="C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/uv-k5font/uv-k5font_full/CMakeLists.txt">
|
||||||
<Option virtualFolder="CMake Files\"/>
|
<Option virtualFolder="CMake Files\"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Binary file not shown.
|
@ -6997,5 +6997,4 @@
|
||||||
\x9B\x54
|
\x9B\x54
|
||||||
\x9B\x55
|
\x9B\x55
|
||||||
\x9B\x56
|
\x9B\x56
|
||||||
\x84\x67\x88\xD0\x8C\x5F\x88\x0F\x86\x8A\x80\x85\x81\x9C\x96\x10\x21
|
\x89\x11\x81\x53\x95\x33\x80\x7F\x8D\xD4
|
||||||
\x8C\x5F\x80\xD1\x80\xBC\x95\xCB\x80\x09\x88\x89\x96\xD2\x8B\xF3\x21
|
|
||||||
|
|
|
@ -6997,5 +6997,4 @@
|
||||||
\x9B\x54
|
\x9B\x54
|
||||||
\x9B\x55
|
\x9B\x55
|
||||||
\x9B\x56
|
\x9B\x56
|
||||||
\x84\x67\x88\xD0\x8C\x5F\x88\x0F\x86\x8A\x80\x85\x81\x9C\x96\x10\x21
|
\x89\x11\x81\x53\x95\x33\x80\x7F\x8D\xD4
|
||||||
\x8C\x5F\x80\xD1\x80\xBC\x95\xCB\x80\x09\x88\x89\x96\xD2\x8B\xF3\x21
|
|
||||||
|
|
Loading…
Reference in a new issue