Skip to content

Commit b0ee716

Browse files
committed
Hotfix circuit example target name
1 parent 66a7df5 commit b0ee716

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/cpp/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
add_custom_target(cpp_circuit_examples)
1+
add_custom_target(circuit_cpp_examples)
22
add_custom_target(assign_cpp_examples)
33
add_custom_target(prove_cpp_examples)
44

@@ -42,14 +42,14 @@ function(add_example example_target)
4242
crypto3::zk
4343

4444
${Boost_LIBRARIES})
45-
add_dependencies(cpp_circuit_examples "${example_target}")
45+
add_dependencies(circuit_cpp_examples "${example_target}")
4646

4747
if (CIRCUIT_ASSEMBLY_OUTPUT)
4848
set(binary_name ${example_target}.ll)
4949
else()
5050
set(binary_name ${example_target}.bc)
5151
endif()
52-
52+
5353
add_custom_target(${example_target}_assign
5454
COMMAND $<TARGET_FILE:assigner> -b ${binary_name} -i ${INPUTS_DIR}/${ARG_INPUT} -c circuit_${example_target}.crct -t assignment_${example_target}.tbl -e pallas --check
5555
DEPENDS ${example_target} ${ARG_INPUT} $<TARGET_FILE:assigner>

0 commit comments

Comments
 (0)