mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 04:40:56 -06:00
- Add imported target LibLZMA::LibLZMA - Show found message with library path - Add test for FindLibLZMA Fixes: #18680, #18679 Signed-off-by: Hiroshi Miura <miurahr@linux.com>
16 lines
286 B
C
16 lines
286 B
C
#include <assert.h>
|
|
#include <lzma.h>
|
|
#include <string.h>
|
|
|
|
static const uint8_t test_string[9] = "123456789";
|
|
|
|
int main()
|
|
{
|
|
static const uint32_t test_vector = 0xCBF43926;
|
|
|
|
uint32_t crc = lzma_crc32(test_string, sizeof(test_string), 0);
|
|
assert(crc == test_vector);
|
|
|
|
return 0;
|
|
}
|