diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-10-05 23:13:31 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-10-06 11:15:43 +0200 |
commit | b26ab0b5803af4ffe23de11a45e43877301a4902 (patch) | |
tree | 084c67e8d2f93ed6ee6fa5629e997d8f7d56ddda /src/device | |
parent | Merge pull request #4495 (diff) | |
download | monero-b26ab0b5803af4ffe23de11a45e43877301a4902.tar.xz |
Merge pull request #4472
02d3ef7b blocks: use auto-generated .c files instead of 'LD -r -b binary' (xiphon)
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/CMakeLists.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/device/CMakeLists.txt b/src/device/CMakeLists.txt index 8f446f42a..727134f75 100644 --- a/src/device/CMakeLists.txt +++ b/src/device/CMakeLists.txt @@ -58,12 +58,6 @@ endif() set(device_private_headers) -if(PER_BLOCK_CHECKPOINT) - set(Blocks "blocks") -else() - set(Blocks "") -endif() - monero_private_headers(device ${device_private_headers}) @@ -79,5 +73,4 @@ target_link_libraries(device ringct_basic ${OPENSSL_CRYPTO_LIBRARIES} PRIVATE - ${Blocks} ${EXTRA_LIBRARIES}) |