Skip to content

Commit 4fa6c0d

Browse files
authored
fix: Align native library object library with wasm (#238)
1 parent 19a72fe commit 4fa6c0d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ make create_full_coverage_report
171171

172172
The report will land in the build directory in the all_test_coverage_report directory.
173173

174-
Alternatively you can build separate test binaries, e.g. honk_tests or numeric_tests and run **make test** just for them or even just for a single test. Then the report will just show coverage for those binaries
174+
Alternatively you can build separate test binaries, e.g. honk_tests or numeric_tests and run **make test** just for them or even just for a single test. Then the report will just show coverage for those binaries.
175175

176176
### VS Code configuration
177177
A default configuration for VS Code is provided by the file [`barretenberg.code-workspace`](barretenberg.code-workspace). These settings can be overridden by placing configuration files in `.vscode/`.

cpp/src/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ else()
159159
add_library(
160160
barretenberg
161161
STATIC
162+
$<TARGET_OBJECTS:transcript_objects>
162163
$<TARGET_OBJECTS:srs_objects>
163164
$<TARGET_OBJECTS:numeric_objects>
164165
$<TARGET_OBJECTS:crypto_sha256_objects>
@@ -171,6 +172,8 @@ else()
171172
$<TARGET_OBJECTS:ecc_objects>
172173
$<TARGET_OBJECTS:polynomials_objects>
173174
$<TARGET_OBJECTS:plonk_objects>
175+
$<TARGET_OBJECTS:honk_objects>
176+
$<TARGET_OBJECTS:proof_system_objects>
174177
$<TARGET_OBJECTS:stdlib_primitives_objects>
175178
$<TARGET_OBJECTS:stdlib_schnorr_objects>
176179
$<TARGET_OBJECTS:stdlib_pedersen_objects>

0 commit comments

Comments
 (0)