-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixing fuzzing build after composer splitting
- Loading branch information
Showing
10 changed files
with
112 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 13 additions & 11 deletions
24
circuits/cpp/barretenberg/cpp/src/barretenberg/grumpkin_srs_gen/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
add_executable( | ||
grumpkin_srs_gen | ||
grumpkin_srs_gen.cpp | ||
) | ||
if (NOT(FUZZING)) | ||
add_executable( | ||
grumpkin_srs_gen | ||
grumpkin_srs_gen.cpp | ||
) | ||
|
||
target_link_libraries( | ||
grumpkin_srs_gen | ||
PRIVATE | ||
srs | ||
ecc | ||
crypto_sha256 | ||
) | ||
target_link_libraries( | ||
grumpkin_srs_gen | ||
PRIVATE | ||
srs | ||
ecc | ||
crypto_sha256 | ||
) | ||
endif() |
22 changes: 12 additions & 10 deletions
22
circuits/cpp/barretenberg/cpp/src/barretenberg/solidity_helpers/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
barretenberg_module(stdlib_solidity_helpers plonk proof_system transcript crypto_pedersen_commitment polynomials crypto_sha256 ecc crypto_blake3s stdlib_primitives stdlib_pedersen_commitment stdlib_blake3s stdlib_blake2s srs) | ||
|
||
add_executable(solidity_key_gen key_gen.cpp) | ||
if (NOT(FUZZING)) | ||
add_executable(solidity_key_gen key_gen.cpp) | ||
|
||
add_executable(solidity_proof_gen proof_gen.cpp) | ||
add_executable(solidity_proof_gen proof_gen.cpp) | ||
|
||
target_link_libraries( | ||
solidity_key_gen | ||
stdlib_solidity_helpers | ||
) | ||
target_link_libraries( | ||
solidity_key_gen | ||
stdlib_solidity_helpers | ||
) | ||
|
||
target_link_libraries( | ||
solidity_proof_gen | ||
stdlib_solidity_helpers | ||
) | ||
target_link_libraries( | ||
solidity_proof_gen | ||
stdlib_solidity_helpers | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.