aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libottery/CMakeLists.txt
blob: 0483c49f3a543a2dd38ded4dad8deacca08d582b (plain)
1
2
3
4
5
6
7
8
9
SET(OTTERYSRC            chacha_merged.c
                         ottery.c
                         ottery_cpuinfo.c
                         ottery_entropy.c
                         ottery_global.c)
if ("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU")
	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3")
endif ()
ADD_LIBRARY(ottery STATIC ${OTTERYSRC})