2019-04-23 08:17:34 +10:00
|
|
|
###############################################################################
|
|
|
|
cmake_minimum_required(VERSION 3.8.0)
|
|
|
|
project(emory CXX)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
|
|
|
|
list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
include (nc)
|
|
|
|
|
|
|
|
include_directories(.)
|
|
|
|
|
|
|
|
|
2019-04-25 14:19:55 +10:00
|
|
|
###############################################################################
|
|
|
|
add_library(emory
|
|
|
|
acl.cpp
|
|
|
|
acl.hpp
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
target_link_libraries(emory cruft acl)
|
|
|
|
|
|
|
|
|
2019-04-23 08:17:34 +10:00
|
|
|
###############################################################################
|
|
|
|
option (TESTS "enable unit testing" ON)
|
|
|
|
if (TESTS)
|
|
|
|
enable_testing ()
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
add_subdirectory(cruft/util)
|
|
|
|
add_subdirectory(cruft/crypto)
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
2019-04-24 13:26:21 +10:00
|
|
|
foreach (t analyse compare stat)
|
2019-04-24 07:46:42 +10:00
|
|
|
add_executable ("${t}" "tools/${t}.cpp")
|
2019-04-25 14:19:55 +10:00
|
|
|
target_link_libraries("${t}" emory cruft-crypto cruft)
|
2019-04-23 21:34:01 +10:00
|
|
|
endforeach()
|