diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-10-08 21:42:38 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-10-08 21:42:38 +0200 |
commit | f5df0e272e0c0b513c6e24425e169683ad00d55c (patch) | |
tree | ceaa102dbb8b7b485b6750c695c2d0208545583f /src/device | |
parent | Merge pull request #4514 (diff) | |
download | monero-f5df0e272e0c0b513c6e24425e169683ad00d55c.tar.xz |
Revert "Merge pull request #4472"
This reverts commit b26ab0b5803af4ffe23de11a45e43877301a4902.
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/device/CMakeLists.txt b/src/device/CMakeLists.txt index 727134f75..8f446f42a 100644 --- a/src/device/CMakeLists.txt +++ b/src/device/CMakeLists.txt @@ -58,6 +58,12 @@ endif() set(device_private_headers) +if(PER_BLOCK_CHECKPOINT) + set(Blocks "blocks") +else() + set(Blocks "") +endif() + monero_private_headers(device ${device_private_headers}) @@ -73,4 +79,5 @@ target_link_libraries(device ringct_basic ${OPENSSL_CRYPTO_LIBRARIES} PRIVATE + ${Blocks} ${EXTRA_LIBRARIES}) |