Default to tiger v2

This commit is contained in:
King_DuckZ 2021-05-28 23:22:23 +02:00
parent c4390ff59b
commit ce3f295819
2 changed files with 2 additions and 2 deletions

View File

@ -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')

View File

@ -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")