-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibOTeConfig.cmake
40 lines (30 loc) · 1.44 KB
/
libOTeConfig.cmake
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
####### Any changes to this file will be overwritten by the next CMake run ####
####### The input file was Config.cmake.in ########
get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
####################################################################################
set(ENABLE_BITPOLYMUL OFF)
set(ENABLE_SIMPLESTOT OFF)
set(ENABLE_SIMPLESTOT_ASM OFF)
set(ENABLE_MR OFF)
set(ENABLE_MR_KYBER OFF)
set(ENABLE_NP OFF)
set(ENABLE_KOS OFF)
set(ENABLE_IKNP OFF)
set(ENABLE_SILENTOT OFF)
set(ENABLE_DELTA_KOS OFF)
set(ENABLE_DELTA_IKNP OFF)
set(ENABLE_OOS OFF)
set(ENABLE_KKRT OFF)
set(ENABLE_RR OFF)
set(ENABLE_AKN OFF)
set(ENABLE_SILENT_VOLE OFF)
find_package(cryptoTools REQUIRED HINTS "${CMAKE_CURRENT_LIST_DIR}/.." ${CMAKE_CURRENT_LIST_DIR})
include("${CMAKE_CURRENT_LIST_DIR}/libOTeDepHelper.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/libOTeTargets.cmake")
OC_getAllLinkedLibraries(oc::libOTe libOTe_LIBRARIES libOTe_INCLUDE_DIRS)
OC_getAllLinkedLibraries(oc::libOTe_Tests libOTe_Tests_LIBRARIES libOTe_Tests_INCLUDE_DIRS)
set(libOTe_LIB ${libOTe_LIBRARIES})
set(libOTe_INC ${libOTe_INCLUDE_DIRS})
set(libOTe_Tests_LIB ${libOTe_Tests_LIBRARIES})
set(libOTe_Tests_INC ${libOTe_Tests_INCLUDE_DIRS})