File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ jobs:
115115
116116 - name : Build proof for the circuit of the examples
117117 run : |
118- make -C build proof_examples -j$(nproc)
118+ make -C build prove_examples -j$(nproc)
119119
120120 - name : Build rslang
121121 run : |
Original file line number Diff line number Diff line change 8787
8888 - name : Build proof for the circuit of the examples
8989 run : |
90- make -C build proof_examples -j$(sysctl -n hw.logicalcpu)
90+ make -C build prove_examples -j$(sysctl -n hw.logicalcpu)
Original file line number Diff line number Diff line change 11add_custom_target (circuit_examples)
22add_custom_target (assign_examples)
3- add_custom_target (proof_examples )
3+ add_custom_target (prove_examples )
44
55function (add_example example_target)
66 set (prefix ARG)
@@ -57,12 +57,12 @@ function(add_example example_target)
5757 VERBATIM )
5858 add_dependencies (assign_examples ${example_target} _assign)
5959
60- add_custom_target (${example_target} _proof
60+ add_custom_target (${example_target} _prove
6161 COMMAND $<TARGET_FILE:transpiler> -m gen-test -proof -i ${CMAKE_CURRENT_SOURCE_DIR} /${ARG_INPUT} -c circuit_${example_target} .crct -t assignment_${example_target} .tbl -o .
6262 DEPENDS ${example_target} ${ARG_INPUT} $<TARGET_FILE:transpiler>
6363 COMMAND_EXPAND_LISTS
6464 VERBATIM )
65- add_dependencies (proof_examples ${example_target} _proof )
65+ add_dependencies (prove_examples ${example_target} _prove )
6666endfunction ()
6767
6868add_example(arithmetics_example SOURCES arithmetics.cpp INPUT arithmetics.inp)
You can’t perform that action at this time.
0 commit comments