ceremonyclient/emp-ot/CMakeLists.txt

17 lines
421 B
CMake
Executable File

cmake_minimum_required (VERSION 3.0)
project (emp-ot)
set(NAME "emp-ot")
find_path(CMAKE_FOLDER NAMES cmake/emp-tool-config.cmake)
include(${CMAKE_FOLDER}/cmake/emp-base.cmake)
find_package(emp-tool REQUIRED)
include_directories(${EMP-TOOL_INCLUDE_DIRS})
# Installation
install(FILES cmake/emp-ot-config.cmake DESTINATION cmake/)
install(DIRECTORY emp-ot DESTINATION include/)
ENABLE_TESTING()
ADD_SUBDIRECTORY(test)