mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* 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
13 lines
328 B
CMake
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()
|