diff options
author | Oran Juice <oranjuices@hotmail.com> | 2014-09-27 17:04:23 +0530 |
---|---|---|
committer | Oran Juice <oranjuices@hotmail.com> | 2014-09-27 17:04:23 +0530 |
commit | 91aa25e055b918d9f9525f67d93c3f5a05f53024 (patch) | |
tree | cb981c17bb1241c3a27e45de9a72db6e50c76bbf /src/CMakeLists.txt | |
parent | Throw error when word list file is empty and quick bug fix (diff) | |
download | monero-91aa25e055b918d9f9525f67d93c3f5a05f53024.tar.xz |
Informs about old style mnemonics from older wallet and provides a new one. CMakeLists.txt update.
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 283a510b8..8138df3f3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -43,10 +43,7 @@ file(GLOB_RECURSE WALLET wallet/*) file(GLOB_RECURSE MINER miner/*) file(GLOB MNEMONICS mnemonics/*) -file(GLOB NEW_WORD_LISTS mnemonics/wordlists/languages/*) -file(GLOB OLD_WORD_LIST mnemonics/wordlists/*) -file(COPY ${NEW_WORD_LISTS} DESTINATION "${CMAKE_SOURCE_DIR}/build/release/src/wordlists/languages") -file(COPY ${OLD_WORD_LIST} DESTINATION "${CMAKE_SOURCE_DIR}/build/release/src/wordlists") +file(COPY "mnemonics/wordlists/" DESTINATION "${CMAKE_SOURCE_DIR}/build/release/src/wordlists") source_group(common FILES ${COMMON}) source_group(crypto FILES ${CRYPTO}) |