2014-09-19 16:19:25 +00:00
|
|
|
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
2014-09-26 11:20:34 +00:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules/cmake-d" "${CMAKE_MODULE_PATH}")
|
2014-09-25 16:50:19 +00:00
|
|
|
project(tigersum)
|
2014-09-19 16:19:25 +00:00
|
|
|
|
2014-09-24 08:09:44 +00:00
|
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -g -O0 -Wall -Wextra")
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 -Wall -Wdeprecated")
|
|
|
|
set(CMAKE_D_FLAGS_DEBUG "${CMAKE_D_FLAGS_DEBUG} -funittest -g -O0 -Wall -Wdeprecated")
|
|
|
|
set(CMAKE_D_FLAGS_RELEASE "${CMAKE_D_FLAGS_RELEASE} -O3 -Wall -Wdeprecated")
|
|
|
|
|
2014-09-25 17:17:07 +00:00
|
|
|
option(REFERENCE_TIGER "Use the reference implementation of the tiger algorithm." OFF)
|
2014-09-26 13:29:00 +00:00
|
|
|
set(READ_BUFF_SIZE "1024 * 16")
|
|
|
|
|
|
|
|
#Just here to nicely print how big the read buffer will be, it doesn't really
|
|
|
|
#do anything important.
|
|
|
|
math(EXPR READ_BUFF_SIZE_RESULT "(${READ_BUFF_SIZE} / 64) * 64")
|
|
|
|
if (${READ_BUFF_SIZE_RESULT} LESS 64)
|
|
|
|
set(READ_BUFF_SIZE_RESULT 64)
|
|
|
|
endif()
|
|
|
|
message(STATUS "Read buffer size will be ${READ_BUFF_SIZE_RESULT} bytes")
|
|
|
|
unset(READ_BUFF_SIZE_RESULT)
|
2014-09-25 17:17:07 +00:00
|
|
|
|
2014-09-25 16:50:19 +00:00
|
|
|
add_subdirectory(src)
|