Files
CMake/Tests/FindLibLZMA/Test/main.c
T
Peter Kokot 08fc190c03 FindLibLZMA: Add LibLZMA_VERSION
This deprecates the LIBLZMA_VERSION result variable.

Issue: #27088
2025-08-03 22:58:45 +02:00

20 lines
495 B
C

#include <assert.h>
#include <lzma.h>
#include <stdio.h>
#include <string.h>
static uint8_t const test_string[9] = "123456789";
int main(void)
{
static uint32_t const test_vector = 0xCBF43926;
uint32_t crc = lzma_crc32(test_string, sizeof(test_string), 0);
assert(crc == test_vector);
printf("Found LibLZMA version %s, expected version %s\n",
lzma_version_string(), CMAKE_EXPECTED_LIBLZMA_VERSION);
return strcmp(lzma_version_string(), CMAKE_EXPECTED_LIBLZMA_VERSION);
}