Following up on my previous message, after resolving the earlier CMake configuration issues (thanks to your kind help!), I encountered one additional linking error during compilation:
CMakeFiles/solarzip.dir/solarzip.cpp.o: in function 'processCompression(...)':
solarzip.cpp:(.text+0x266d): undefined reference to 'valuateData(char const*, char const*, long*, compResult*)'
It appears that the function valuateData is called in solarzip.cpp, but its definition or declaration seems to be missing from the current codebase. I’ve searched through the repository and dependencies but couldn’t locate it. Would you be so kind as to advise where this function should be defined, or whether it might have been accidentally omitted?
Following up on my previous message, after resolving the earlier CMake configuration issues (thanks to your kind help!), I encountered one additional linking error during compilation:
CMakeFiles/solarzip.dir/solarzip.cpp.o: in function 'processCompression(...)':
solarzip.cpp:(.text+0x266d): undefined reference to 'valuateData(char const*, char const*, long*, compResult*)'
It appears that the function valuateData is called in solarzip.cpp, but its definition or declaration seems to be missing from the current codebase. I’ve searched through the repository and dependencies but couldn’t locate it. Would you be so kind as to advise where this function should be defined, or whether it might have been accidentally omitted?