Skip to content

Commit a63b47d

Browse files
committed
Target proof_examples renamed to prove_examples.
1 parent 1ea4c4e commit a63b47d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: |

.github/workflows/build_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ jobs:
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)

examples/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
add_custom_target(circuit_examples)
22
add_custom_target(assign_examples)
3-
add_custom_target(proof_examples)
3+
add_custom_target(prove_examples)
44

55
function(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)
6666
endfunction()
6767

6868
add_example(arithmetics_example SOURCES arithmetics.cpp INPUT arithmetics.inp)

0 commit comments

Comments
 (0)