ceremonyclient/emp-ot/cmake/emp-ot-config.cmake
Cassandra Heart dbd95bd9e9
v2.1.0 (#439)
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete

* 2.1.0 main node rollup
2025-09-30 02:48:15 -05:00

13 lines
328 B
CMake

find_package(emp-tool)
find_path(EMP-OT_INCLUDE_DIR emp-ot/emp-ot.h)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(emp-ot DEFAULT_MSG EMP-OT_INCLUDE_DIR)
if(EMP-OT_FOUND)
set(EMP-OT_INCLUDE_DIRS ${EMP-TOOL_INCLUDE_DIRS} ${EMP-OT_INCLUDE_DIR})
set(EMP-OT_LIBRARIES ${EMP-TOOL_LIBRARIES})
endif()