1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/test/bench/CMakeLists.txt

21 lines
307 B
CMake

cmake_minimum_required(VERSION 3.13)
include_directories(${PROJECT_SOURCE_DIR}/3rd/gbench/include)
link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../3rd/gbench/lib)
add_executable(
bench
kyber.cc
)
target_link_libraries(
bench
pqc
benchmark
benchmark_main
cxx
cxxabi
)