mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-08-01 09:04:13 +02:00
e4b4ba875b
Replaces the QProcess->7z shim with the public-domain LZMA SDK (23.01) 7-Zip reader, vendored under sources/import/edz/lzma/ (decode-only subset). New edzsevenzip.cpp wraps SzArEx_Open/SzArEx_Extract and writes entries via Qt, so EdzArchive no longer needs an external 7-Zip at runtime. Enables the C language in CMake for the vendored sources. Verified: the bundled decoder extracts all three ifm sample .edz and the generated elements still match the Python oracle exactly (byte-correct decode), with no 7z on the path. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
758 B
C
28 lines
758 B
C
#define MY_VER_MAJOR 23
|
|
#define MY_VER_MINOR 01
|
|
#define MY_VER_BUILD 0
|
|
#define MY_VERSION_NUMBERS "23.01"
|
|
#define MY_VERSION MY_VERSION_NUMBERS
|
|
|
|
#ifdef MY_CPU_NAME
|
|
#define MY_VERSION_CPU MY_VERSION " (" MY_CPU_NAME ")"
|
|
#else
|
|
#define MY_VERSION_CPU MY_VERSION
|
|
#endif
|
|
|
|
#define MY_DATE "2023-06-20"
|
|
#undef MY_COPYRIGHT
|
|
#undef MY_VERSION_COPYRIGHT_DATE
|
|
#define MY_AUTHOR_NAME "Igor Pavlov"
|
|
#define MY_COPYRIGHT_PD "Igor Pavlov : Public domain"
|
|
#define MY_COPYRIGHT_CR "Copyright (c) 1999-2023 Igor Pavlov"
|
|
|
|
#ifdef USE_COPYRIGHT_CR
|
|
#define MY_COPYRIGHT MY_COPYRIGHT_CR
|
|
#else
|
|
#define MY_COPYRIGHT MY_COPYRIGHT_PD
|
|
#endif
|
|
|
|
#define MY_COPYRIGHT_DATE MY_COPYRIGHT " : " MY_DATE
|
|
#define MY_VERSION_COPYRIGHT_DATE MY_VERSION_CPU " : " MY_COPYRIGHT " : " MY_DATE
|