From ce3f295819ada3e7fca051fe8140cd01f4db36fb Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Fri, 28 May 2021 23:22:23 +0200 Subject: [PATCH] Default to tiger v2 --- meson_options.txt | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index e752b29..66241e9 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,3 +1,3 @@ option('reference_tiger', type: 'boolean', value: false) -option('default_tiger_version', type: 'combo', description: 'Default version of the Tiger algorithm', choices: ['1', '2'], value: '1') +option('default_tiger_version', type: 'combo', description: 'Default version of the Tiger algorithm', choices: ['1', '2'], value: '2') option('read_buff_size', type: 'integer', value: 16384, min: 64, description: 'Read buffer size in bytes') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b82ff8d..3d60131 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.6 FATAL_ERROR) project(tigersum D C) -set(DEFAULT_TIGER_VERSION "1") +set(DEFAULT_TIGER_VERSION "2") set(TIGERSUM_MAJOR "0") set(TIGERSUM_MINOR "1")