Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

FRI proof_eval split into several functions #310

Merged
merged 3 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions libs/blueprint/example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@
#---------------------------------------------------------------------------#

macro(define_blueprint_example name)
add_executable(blueprint_${name}_example ${name}.cpp)
target_link_libraries(blueprint_${name}_example PRIVATE

string(REPLACE "/" "_" full_example_name blueprint_${name}_example)

add_executable(${full_example_name} ${name}.cpp)
target_link_libraries(${full_example_name} PRIVATE
${CMAKE_WORKSPACE_NAME}_blueprint

${CMAKE_WORKSPACE_NAME}::algebra
Expand All @@ -18,10 +21,9 @@ macro(define_blueprint_example name)
${CMAKE_WORKSPACE_NAME}::hash
${CMAKE_WORKSPACE_NAME}::multiprecision
${CMAKE_WORKSPACE_NAME}::zk
marshalling::crypto3_zk

${Boost_LIBRARIES})
set_target_properties(blueprint_${name}_example PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED TRUE)
set_target_properties(${full_example_name} PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED TRUE)
endmacro()


Expand All @@ -33,4 +35,4 @@ set(EXAMPLES_NAMES

foreach(EXAMPLE_NAME ${EXAMPLES_NAMES})
define_blueprint_example(${EXAMPLE_NAME})
endforeach()
endforeach()
Loading
Loading