tigersum/CMakeLists.txt

11 lines
490 B
CMake

cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
project(tigersum)
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")
option(REFERENCE_TIGER "Use the reference implementation of the tiger algorithm." OFF)
add_subdirectory(src)