-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCMakeLists.txt
25 lines (19 loc) · 1.17 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# [===========================================================================]
# [ C r y p t o x ]
# [---------------------------------------------------------------------------]
# [ ]
# [ Copyright (C) 2016-2017 ]
# [ Rodrigo Madera <[email protected]> ]
# [ ]
# [---------------------------------------------------------------------------]
# [ Distributed under the Boost Software License, Version 1.0 ]
# [ Read accompanying LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt ]
# [===========================================================================]
cmake_minimum_required(VERSION 2.8.8 FATAL_ERROR)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
enable_testing()
project(cryptox CXX)
include_directories(include)
add_subdirectory(tests)
add_subdirectory(benchmarks)
install(DIRECTORY include DESTINATION ${CMAKE_INSTALL_PREFIX})