Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
Refactor libsnark CMake config
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Mar 7, 2017
1 parent 3db341b commit 66b2879
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ include(deps/boost.cmake)
include(deps/jsoncpp.cmake)
include(deps/jsonrpc.cmake)
include(deps/cryptopp.cmake)
include(deps/snark.cmake)
include(ProjectSnark)

configure_project(CPUID CURL EVMJIT FATDB MINIUPNPC ROCKSDB PARANOID TESTS VMTRACE)

Expand Down
2 changes: 1 addition & 1 deletion libdevcrypto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ find_package(Utils)

target_include_directories(devcrypto PRIVATE ..)
target_include_directories(devcrypto PRIVATE ../utils)
target_link_libraries(devcrypto cryptopp snark ${Utils_SCRYPT_LIBRARIES} devcore)
target_link_libraries(devcrypto cryptopp Snark ${Utils_SCRYPT_LIBRARIES} devcore)

if (NOT EMSCRIPTEN)
target_link_libraries(devcrypto ${Utils_SECP256K1_LIBRARIES})
Expand Down

2 comments on commit 66b2879

@chriseth
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you forgot to add the file.

@chfast
Copy link
Member Author

@chfast chfast commented on 66b2879 Mar 8, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I replaced this commit.

Please sign in to comment.